Sha256: 0ea5cf7286d0c66f758f182bf94c3ddef472d39270e774f8c925a967de4e7a8f
Contents?: true
Size: 1.54 KB
Versions: 4
Compression:
Stored size: 1.54 KB
Contents
module Treetop module Compiler class Repetition < ParsingExpression def compile(address, builder, parent_expression) super repeated_expression = parent_expression.atomic begin_comment(parent_expression) use_vars :result, :accumulator, :nested_results, :start_index builder.loop do obtain_new_subexpression_address repeated_expression.compile(subexpression_address, builder) accumulate_nested_result builder.if__ subexpression_success? do accumulate_subexpression_result end builder.else_ do builder.break end end end def inline_module_name parent_expression.inline_module_name end def assign_and_extend_result assign_result "#{node_class_name}.new(input, #{start_index_var}...index, #{accumulator_var}, #{nested_results_var})" extend_result_with_inline_module end end class ZeroOrMore < Repetition def compile(address, builder, parent_expression) super assign_and_extend_result end_comment(parent_expression) end end class OneOrMore < Repetition def compile(address, builder, parent_expression) super builder.if__ "#{accumulator_var}.empty?" do reset_index assign_failure start_index_var, nested_results_var end builder.else_ do assign_and_extend_result end end_comment(parent_expression) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems