cloudhead-less 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/less.gemspec +92 -2
  4. data/lib/less.rb +6 -4
  5. data/lib/less/engine.rb +1 -1
  6. data/lib/less/engine/less.tt +4 -4
  7. data/lib/less/engine/nodes/element.rb +3 -1
  8. data/lib/less/engine/nodes/entity.rb +18 -4
  9. data/lib/less/engine/nodes/function.rb +24 -3
  10. data/lib/less/engine/nodes/literal.rb +4 -1
  11. data/lib/less/engine/parser.rb +39 -43
  12. data/lib/vendor/treetop/.gitignore +7 -0
  13. data/lib/vendor/treetop/LICENSE +19 -0
  14. data/lib/vendor/treetop/README +164 -0
  15. data/lib/vendor/treetop/Rakefile +19 -0
  16. data/lib/vendor/treetop/benchmark/seqpar.gnuplot +15 -0
  17. data/lib/vendor/treetop/benchmark/seqpar.treetop +16 -0
  18. data/lib/vendor/treetop/benchmark/seqpar_benchmark.rb +107 -0
  19. data/lib/vendor/treetop/bin/tt +28 -0
  20. data/lib/vendor/treetop/lib/treetop.rb +11 -0
  21. data/lib/vendor/treetop/lib/treetop/bootstrap_gen_1_metagrammar.rb +45 -0
  22. data/lib/vendor/treetop/lib/treetop/compiler.rb +6 -0
  23. data/lib/vendor/treetop/lib/treetop/compiler/grammar_compiler.rb +42 -0
  24. data/lib/vendor/treetop/lib/treetop/compiler/lexical_address_space.rb +17 -0
  25. data/lib/vendor/treetop/lib/treetop/compiler/metagrammar.rb +3097 -0
  26. data/lib/vendor/treetop/lib/treetop/compiler/metagrammar.treetop +408 -0
  27. data/lib/vendor/treetop/lib/treetop/compiler/node_classes.rb +19 -0
  28. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/anything_symbol.rb +18 -0
  29. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/atomic_expression.rb +14 -0
  30. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/character_class.rb +23 -0
  31. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/choice.rb +31 -0
  32. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/declaration_sequence.rb +24 -0
  33. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/grammar.rb +28 -0
  34. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/inline_module.rb +27 -0
  35. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/nonterminal.rb +13 -0
  36. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/optional.rb +19 -0
  37. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/parenthesized_expression.rb +9 -0
  38. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/parsing_expression.rb +146 -0
  39. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/parsing_rule.rb +55 -0
  40. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/predicate.rb +45 -0
  41. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/repetition.rb +55 -0
  42. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/sequence.rb +68 -0
  43. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/terminal.rb +20 -0
  44. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/transient_prefix.rb +9 -0
  45. data/lib/vendor/treetop/lib/treetop/compiler/node_classes/treetop_file.rb +9 -0
  46. data/lib/vendor/treetop/lib/treetop/compiler/ruby_builder.rb +113 -0
  47. data/lib/vendor/treetop/lib/treetop/ruby_extensions.rb +2 -0
  48. data/lib/vendor/treetop/lib/treetop/ruby_extensions/string.rb +42 -0
  49. data/lib/vendor/treetop/lib/treetop/runtime.rb +5 -0
  50. data/lib/vendor/treetop/lib/treetop/runtime/compiled_parser.rb +109 -0
  51. data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list.rb +4 -0
  52. data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list/head_node.rb +15 -0
  53. data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list/interval_skip_list.rb +200 -0
  54. data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list/node.rb +164 -0
  55. data/lib/vendor/treetop/lib/treetop/runtime/syntax_node.rb +86 -0
  56. data/lib/vendor/treetop/lib/treetop/runtime/terminal_parse_failure.rb +16 -0
  57. data/lib/vendor/treetop/lib/treetop/runtime/terminal_syntax_node.rb +17 -0
  58. data/lib/vendor/treetop/lib/treetop/version.rb +9 -0
  59. data/lib/vendor/treetop/spec/compiler/and_predicate_spec.rb +36 -0
  60. data/lib/vendor/treetop/spec/compiler/anything_symbol_spec.rb +44 -0
  61. data/lib/vendor/treetop/spec/compiler/character_class_spec.rb +239 -0
  62. data/lib/vendor/treetop/spec/compiler/choice_spec.rb +80 -0
  63. data/lib/vendor/treetop/spec/compiler/circular_compilation_spec.rb +28 -0
  64. data/lib/vendor/treetop/spec/compiler/failure_propagation_functional_spec.rb +21 -0
  65. data/lib/vendor/treetop/spec/compiler/grammar_compiler_spec.rb +84 -0
  66. data/lib/vendor/treetop/spec/compiler/grammar_spec.rb +41 -0
  67. data/lib/vendor/treetop/spec/compiler/nonterminal_symbol_spec.rb +40 -0
  68. data/lib/vendor/treetop/spec/compiler/not_predicate_spec.rb +38 -0
  69. data/lib/vendor/treetop/spec/compiler/one_or_more_spec.rb +35 -0
  70. data/lib/vendor/treetop/spec/compiler/optional_spec.rb +37 -0
  71. data/lib/vendor/treetop/spec/compiler/parenthesized_expression_spec.rb +19 -0
  72. data/lib/vendor/treetop/spec/compiler/parsing_rule_spec.rb +32 -0
  73. data/lib/vendor/treetop/spec/compiler/sequence_spec.rb +115 -0
  74. data/lib/vendor/treetop/spec/compiler/terminal_spec.rb +81 -0
  75. data/lib/vendor/treetop/spec/compiler/terminal_symbol_spec.rb +37 -0
  76. data/lib/vendor/treetop/spec/compiler/test_grammar.treetop +7 -0
  77. data/lib/vendor/treetop/spec/compiler/test_grammar.tt +7 -0
  78. data/lib/vendor/treetop/spec/compiler/test_grammar_do.treetop +7 -0
  79. data/lib/vendor/treetop/spec/compiler/zero_or_more_spec.rb +56 -0
  80. data/lib/vendor/treetop/spec/composition/a.treetop +11 -0
  81. data/lib/vendor/treetop/spec/composition/b.treetop +11 -0
  82. data/lib/vendor/treetop/spec/composition/c.treetop +10 -0
  83. data/lib/vendor/treetop/spec/composition/d.treetop +10 -0
  84. data/lib/vendor/treetop/spec/composition/f.treetop +17 -0
  85. data/lib/vendor/treetop/spec/composition/grammar_composition_spec.rb +40 -0
  86. data/lib/vendor/treetop/spec/composition/subfolder/e_includes_c.treetop +15 -0
  87. data/lib/vendor/treetop/spec/ruby_extensions/string_spec.rb +32 -0
  88. data/lib/vendor/treetop/spec/runtime/compiled_parser_spec.rb +101 -0
  89. data/lib/vendor/treetop/spec/runtime/interval_skip_list/delete_spec.rb +147 -0
  90. data/lib/vendor/treetop/spec/runtime/interval_skip_list/expire_range_spec.rb +349 -0
  91. data/lib/vendor/treetop/spec/runtime/interval_skip_list/insert_and_delete_node.rb +385 -0
  92. data/lib/vendor/treetop/spec/runtime/interval_skip_list/insert_spec.rb +660 -0
  93. data/lib/vendor/treetop/spec/runtime/interval_skip_list/interval_skip_list_spec.graffle +6175 -0
  94. data/lib/vendor/treetop/spec/runtime/interval_skip_list/interval_skip_list_spec.rb +58 -0
  95. data/lib/vendor/treetop/spec/runtime/interval_skip_list/palindromic_fixture.rb +23 -0
  96. data/lib/vendor/treetop/spec/runtime/interval_skip_list/palindromic_fixture_spec.rb +164 -0
  97. data/lib/vendor/treetop/spec/runtime/interval_skip_list/spec_helper.rb +84 -0
  98. data/lib/vendor/treetop/spec/runtime/syntax_node_spec.rb +68 -0
  99. data/lib/vendor/treetop/spec/spec_helper.rb +106 -0
  100. data/lib/vendor/treetop/spec/spec_suite.rb +4 -0
  101. data/lib/vendor/treetop/treetop.gemspec +18 -0
  102. data/spec/less/variables-1.0.less +1 -1
  103. metadata +92 -2
@@ -0,0 +1,115 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper")
2
+
3
+ module SequenceSpec
4
+ class Foo < Treetop::Runtime::SyntaxNode
5
+ end
6
+
7
+ describe "a sequence of labeled terminal symbols followed by a node class declaration and a block" do
8
+ testing_expression 'foo:"foo" bar:"bar" baz:"baz" <SequenceSpec::Foo> { def a_method; end }'
9
+
10
+ it "upon successfully matching input, instantiates an instance of the declared node class with element accessor methods and the method from the inline module" do
11
+ parse('foobarbaz') do |result|
12
+ result.should_not be_nil
13
+ result.should be_an_instance_of(Foo)
14
+ result.should respond_to(:a_method)
15
+ result.foo.text_value.should == 'foo'
16
+ result.bar.text_value.should == 'bar'
17
+ result.baz.text_value.should == 'baz'
18
+ end
19
+ end
20
+
21
+ it "successfully matches at a non-zero index" do
22
+ parse('---foobarbaz', :index => 3) do |result|
23
+ result.should_not be_nil
24
+ result.should be_nonterminal
25
+ (result.elements.map {|elt| elt.text_value}).join.should == 'foobarbaz'
26
+ end
27
+ end
28
+
29
+ it "fails to match non-matching input, recording the parse failure of first non-matching terminal" do
30
+ parse('---foobazbaz', :index => 3) do |result|
31
+ result.should be_nil
32
+ parser.index.should == 3
33
+ terminal_failures = parser.terminal_failures
34
+ terminal_failures.size.should == 1
35
+ failure = terminal_failures.first
36
+ failure.index.should == 6
37
+ failure.expected_string.should == 'bar'
38
+ end
39
+ end
40
+ end
41
+
42
+ module ModFoo
43
+ def mod_method; end
44
+ end
45
+
46
+ describe "a sequence of labeled terminal symbols followed by a node module declaration and a block" do
47
+ testing_expression 'foo:"foo" bar:"bar" baz:"baz" <SequenceSpec::ModFoo> { def a_method; end }'
48
+
49
+ it "upon successfully matching input, instantiates a syntax node and extends it with the declared module, element accessor methods, and the method from the inline module" do
50
+ parse('foobarbaz') do |result|
51
+ result.should_not be_nil
52
+ result.should respond_to(:mod_method)
53
+ result.should be_an_instance_of(Treetop::Runtime::SyntaxNode)
54
+ result.should be_a_kind_of(ModFoo)
55
+ result.should respond_to(:a_method)
56
+ result.foo.text_value.should == 'foo'
57
+ result.bar.text_value.should == 'bar'
58
+ result.baz.text_value.should == 'baz'
59
+ end
60
+ end
61
+ end
62
+
63
+ describe "a sequence of non-terminals" do
64
+ testing_grammar %{
65
+ grammar TestGrammar
66
+ rule sequence
67
+ foo bar baz {
68
+ def baz
69
+ 'override' + super.text_value
70
+ end
71
+ }
72
+ end
73
+
74
+ rule foo 'foo' end
75
+ rule bar 'bar' end
76
+ rule baz 'baz' end
77
+ end
78
+ }
79
+
80
+ it "defines accessors for non-terminals automatically that can be overridden in the inline block" do
81
+ parse('foobarbaz') do |result|
82
+ result.foo.text_value.should == 'foo'
83
+ result.bar.text_value.should == 'bar'
84
+ result.baz.should == 'overridebaz'
85
+ end
86
+ end
87
+ end
88
+
89
+ describe "Compiling a sequence containing various white-space errors" do
90
+ it "should succeed on a valid sequence" do
91
+ compiling_expression('foo:"foo" "bar" <SequenceSpec::Foo> { def a_method; end }').should_not raise_error
92
+ end
93
+
94
+ it "rejects space after a label" do
95
+ compiling_expression('foo :"foo" "bar"').should raise_error(RuntimeError)
96
+ end
97
+
98
+ it "rejects space after label's colon" do
99
+ compiling_expression('foo: "foo" "bar"').should raise_error(RuntimeError)
100
+ end
101
+
102
+ it "rejects missing space after a primary" do
103
+ compiling_expression('foo:"foo""bar"').should raise_error(RuntimeError)
104
+ end
105
+
106
+ it "rejects missing space before node class declaration" do
107
+ compiling_expression('foo:"foo" "bar"<SequenceSpec::Foo>').should raise_error(RuntimeError)
108
+ end
109
+
110
+ it "rejects missing space before inline module" do
111
+ compiling_expression('foo:"foo" "bar" <SequenceSpec::Foo>{def a_method; end}').should raise_error(RuntimeError)
112
+ end
113
+ end
114
+
115
+ end
@@ -0,0 +1,81 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper")
2
+
3
+ module TerminalSymbolSpec
4
+ class Foo < Treetop::Runtime::SyntaxNode
5
+ end
6
+
7
+ describe "a terminal symbol followed by a node class declaration and a block" do
8
+ testing_expression "'foo' <TerminalSymbolSpec::Foo> { def a_method; end }"
9
+
10
+ it "correctly parses matching input prefixes at various indices, returning an instance of the declared class that can respond to methods defined in the inline module" do
11
+ parse "foo", :index => 0 do |result|
12
+ result.should be_an_instance_of(Foo)
13
+ result.should respond_to(:a_method)
14
+ result.interval.should == (0...3)
15
+ result.text_value.should == 'foo'
16
+ end
17
+
18
+ parse "xfoo", :index => 1 do |result|
19
+ result.should be_an_instance_of(Foo)
20
+ result.should respond_to(:a_method)
21
+ result.interval.should == (1...4)
22
+ result.text_value.should == 'foo'
23
+ end
24
+
25
+ parse "---foo", :index => 3 do |result|
26
+ result.should be_an_instance_of(Foo)
27
+ result.should respond_to(:a_method)
28
+ result.interval.should == (3...6)
29
+ result.text_value.should == 'foo'
30
+ end
31
+ end
32
+
33
+ it "fails to parse nonmatching input at the index even if a match occurs later" do
34
+ parse(" foo", :index => 0).should be_nil
35
+ end
36
+ end
37
+
38
+ module ModFoo
39
+ end
40
+
41
+ describe "a terminal symbol followed by a node class declaration and a block" do
42
+ testing_expression "'foo' <TerminalSymbolSpec::ModFoo> { def a_method; end }"
43
+
44
+ it "correctly parses matching input prefixes at various indices, returning an instance of SyntaxNode extended with the declared module that can respond to methods defined in the inline module" do
45
+ parse "foo", :index => 0 do |result|
46
+ result.should be_an_instance_of(Treetop::Runtime::SyntaxNode)
47
+ result.should be_a_kind_of(ModFoo)
48
+ result.should respond_to(:a_method)
49
+ result.interval.should == (0...3)
50
+ result.text_value.should == 'foo'
51
+ end
52
+
53
+ parse "xfoo", :index => 1 do |result|
54
+ result.should be_an_instance_of(Treetop::Runtime::SyntaxNode)
55
+ result.should be_a_kind_of(ModFoo)
56
+ result.should respond_to(:a_method)
57
+ result.interval.should == (1...4)
58
+ result.text_value.should == 'foo'
59
+ end
60
+
61
+ parse "---foo", :index => 3 do |result|
62
+ result.should be_an_instance_of(Treetop::Runtime::SyntaxNode)
63
+ result.should be_a_kind_of(ModFoo)
64
+ result.should respond_to(:a_method)
65
+ result.interval.should == (3...6)
66
+ result.text_value.should == 'foo'
67
+ end
68
+ end
69
+ end
70
+
71
+ describe "a transient terminal symbol" do
72
+ testing_expression "~'foo'"
73
+
74
+ it "returns true upon parsing matching input prefixes at various indices" do
75
+ pending "transient terminal expressions"
76
+ parse("foo", :index => 0).should be_true
77
+ parse("-foo", :index => 1).should be_true
78
+ parse("---foo", :index => 3).should be_true
79
+ end
80
+ end
81
+ end
@@ -0,0 +1,37 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper")
2
+
3
+ module TerminalSymbolSpec
4
+ class Foo < Treetop::Runtime::SyntaxNode
5
+ end
6
+
7
+ describe "a terminal symbol followed by a node class declaration and a block" do
8
+ testing_expression "'foo' <TerminalSymbolSpec::Foo> { def a_method; end }"
9
+
10
+ it "correctly parses matching input prefixes at various indices, returning an instance of the declared class that can respond to methods defined in the inline module" do
11
+ parse "foo", :index => 0 do |result|
12
+ result.should be_an_instance_of(Foo)
13
+ result.should respond_to(:a_method)
14
+ result.interval.should == (0...3)
15
+ result.text_value.should == 'foo'
16
+ end
17
+
18
+ parse "xfoo", :index => 1 do |result|
19
+ result.should be_an_instance_of(Foo)
20
+ result.should respond_to(:a_method)
21
+ result.interval.should == (1...4)
22
+ result.text_value.should == 'foo'
23
+ end
24
+
25
+ parse "---foo", :index => 3 do |result|
26
+ result.should be_an_instance_of(Foo)
27
+ result.should respond_to(:a_method)
28
+ result.interval.should == (3...6)
29
+ result.text_value.should == 'foo'
30
+ end
31
+ end
32
+
33
+ it "fails to parse nonmatching input at the index even if a match occurs later" do
34
+ parse(" foo", :index => 0).should be_nil
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,7 @@
1
+ module Test
2
+ grammar Grammar
3
+ rule foo
4
+ 'foo'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Test
2
+ grammar Grammar
3
+ rule foo
4
+ 'foo'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Test
2
+ grammar Grammar do
3
+ rule foo do
4
+ 'foo'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,56 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper")
2
+
3
+ module ZeroOrMoreSpec
4
+ class Foo < Treetop::Runtime::SyntaxNode
5
+ end
6
+
7
+ describe "zero or more of a terminal symbol followed by a node class declaration and a block" do
8
+ testing_expression '"foo"* <ZeroOrMoreSpec::Foo> { def a_method; end }'
9
+
10
+ it "successfully parses epsilon, returning an instance declared node class and recording a terminal failure" do
11
+ parse('') do |result|
12
+ result.should_not be_nil
13
+ result.should be_an_instance_of(Foo)
14
+ result.should respond_to(:a_method)
15
+
16
+ terminal_failures = parser.terminal_failures
17
+ terminal_failures.size.should == 1
18
+ failure = terminal_failures.first
19
+ failure.index.should == 0
20
+ failure.expected_string.should == 'foo'
21
+ end
22
+ end
23
+
24
+ it "successfully parses two of that terminal in a row, returning an instance of the declared node class and recording a failure representing the third attempt " do
25
+ parse("foofoo") do |result|
26
+ result.should_not be_nil
27
+ result.should be_an_instance_of(Foo)
28
+
29
+ terminal_failures = parser.terminal_failures
30
+ terminal_failures.size.should == 1
31
+ failure = terminal_failures.first
32
+ failure.index.should == 6
33
+ failure.expected_string.should == 'foo'
34
+ end
35
+ end
36
+ end
37
+
38
+ describe "Zero or more of a sequence" do
39
+ testing_expression '("foo" "bar")*'
40
+
41
+ it "resets the index appropriately following partially matcing input" do
42
+ parse('foobarfoo', :consume_all_input => false) do |result|
43
+ result.should_not be_nil
44
+ result.interval.should == (0...6)
45
+ end
46
+ end
47
+ end
48
+
49
+ describe "Zero or more of a choice" do
50
+ testing_expression '("a" / "b")*'
51
+
52
+ it "successfully parses matching input" do
53
+ parse('abba').should_not be_nil
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,11 @@
1
+ module Test
2
+ grammar A
3
+ rule a
4
+ 'a'
5
+ end
6
+
7
+ rule inherit
8
+ 'super'
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Test
2
+ grammar B
3
+ rule b
4
+ 'b'
5
+ end
6
+
7
+ rule inherit
8
+ super 'keyword'
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,10 @@
1
+ module Test
2
+ grammar C
3
+ include A
4
+ include B
5
+
6
+ rule c
7
+ a b 'c'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ module Test
2
+ grammar D
3
+ include A
4
+ include B
5
+
6
+ rule inherit
7
+ super 'works'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,17 @@
1
+
2
+ require "a"
3
+
4
+ require File.dirname(__FILE__) + "/b"
5
+ require File.dirname(__FILE__) + "/subfolder/e_includes_c"
6
+
7
+ module Test
8
+ grammar F
9
+ include A
10
+ include B
11
+ include E
12
+
13
+ rule f
14
+ c e 'f'
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,40 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper")
2
+
3
+ module GrammarCompositionSpec
4
+ describe "several composed grammars" do
5
+ before do
6
+ dir = File.dirname(__FILE__)
7
+ Treetop.load File.join(dir, 'a')
8
+ Treetop.load File.join(dir, 'b')
9
+ Treetop.load File.join(dir, 'c')
10
+ # Check that polyglot finds d.treetop and loads it:
11
+ $: << dir
12
+ require 'd'
13
+
14
+ @c = ::Test::CParser.new
15
+ @d = ::Test::DParser.new
16
+ end
17
+
18
+ specify "rules in C have access to rules defined in A and B" do
19
+ @c.parse('abc').should_not be_nil
20
+ end
21
+
22
+ specify "rules in C can override rules in A and B with super semantics" do
23
+ @d.parse('superkeywordworks').should_not be_nil
24
+ end
25
+ end
26
+
27
+ describe "composed grammar chaining with require" do
28
+ before do
29
+ # Load f with polyglot without using the load path:
30
+ require File.dirname(__FILE__) + '/f'
31
+
32
+ @f = ::Test::FParser.new
33
+ end
34
+
35
+ specify "rules in F have access to rule defined in E" do
36
+ @f.parse('abcef').should_not be_nil
37
+ end
38
+
39
+ end
40
+ end
@@ -0,0 +1,15 @@
1
+ require File.dirname(__FILE__) + "/../c"
2
+
3
+ module Test
4
+ grammar E
5
+ include C
6
+
7
+ rule e
8
+ 'e'
9
+ end
10
+
11
+ rule inherit
12
+ 'super'
13
+ end
14
+ end
15
+ end