Class: Rattler::Parsers::Apply
- Inherits:
-
Parser
- Object
- Util::Node
- Parser
- Rattler::Parsers::Apply
- Defined in:
- lib/rattler/parsers/apply.rb
Overview
Apply
parses by applying a referenced parse rule.
Class Method Summary collapse
-
.[](rule_name) ⇒ Apply
A new parser that parses by applying the rule referenced by
rule_name
. - .parsed(results) ⇒ Object
Instance Method Summary collapse
-
#capturing_decidable? ⇒ Object
true
if it can be determined statically whether the parser returns parse results on success. -
#parse(scanner, rules, scope = ParserScope.empty) ⇒ Object
Apply the parse rule referenced by the #rule_name.
Methods inherited from Parser
#&, #>>, #capturing?, #labeled?, #list, #one_or_more, #optional, #repeat, #semantic?, #sequence?, #skip, #variable_capture_count?, #with_ws, #zero_or_more, #|
Methods included from Runtime::ParserHelper
Methods inherited from Util::Node
#==, #[], #attrs, #can_equal?, #child, #children, #each, #empty?, #eql?, #initialize, #inspect, #method_missing, #name, #pretty_print, #pretty_print_cycle, #respond_to?, #same_contents?, #to_graphviz, #with_attrs, #with_attrs!, #with_children
Constructor Details
This class inherits a constructor from Rattler::Util::Node
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Rattler::Util::Node
Class Method Details
.[](rule_name) ⇒ Apply
Returns a new parser that parses by applying the rule referenced by rule_name
.
11 12 13 |
# File 'lib/rattler/parsers/apply.rb', line 11 def self.[](rule_name) self.new(:rule_name => rule_name.to_sym) end |
.parsed(results) ⇒ Object
16 17 18 |
# File 'lib/rattler/parsers/apply.rb', line 16 def self.parsed(results) #:nodoc: self[results.first] end |
Instance Method Details
#capturing_decidable? ⇒ Object
true
if it can be determined statically whether the parser returns parse results on success
30 31 32 |
# File 'lib/rattler/parsers/apply.rb', line 30 def capturing_decidable? false end |
#parse(scanner, rules, scope = ParserScope.empty) ⇒ Object
Apply the parse rule referenced by the #rule_name.
25 26 27 |
# File 'lib/rattler/parsers/apply.rb', line 25 def parse(scanner, rules, scope = ParserScope.empty) (rule = rules[rule_name]) && rule.parse(scanner, rules, scope) end |