summaryrefslogtreecommitdiff
path: root/prototype/grammar.rb
diff options
context:
space:
mode:
authorpks <pks@users.noreply.github.com>2026-02-27 12:09:49 +0100
committerGitHub <noreply@github.com>2026-02-27 12:09:49 +0100
commite7189f97ec29bd576fe79a260fa0e8cd25dcc968 (patch)
tree227bc72ff0f7f72b8c6b3e6f735d922dd13da147 /prototype/grammar.rb
parentc13b5650ac4bee7e674d263fcb778599bb449bff (diff)
parent1377ffbdd2791e50cb3ca21d11c8c21febdbf911 (diff)
Merge pull request #1 from pks/claudeHEADmaster
Claude
Diffstat (limited to 'prototype/grammar.rb')
-rw-r--r--prototype/grammar.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/prototype/grammar.rb b/prototype/grammar.rb
index abccb15..4aebd95 100644
--- a/prototype/grammar.rb
+++ b/prototype/grammar.rb
@@ -120,9 +120,9 @@ class Grammar
@rules.map { |r| r.lhs.symbol }.select { |s| s != 'S' }.uniq.each { |symbol|
@rules << Rule.new(NT.new('S'), [NT.new(symbol, 0)], [NT.new(symbol, 0)], [0])
@start_nt << @rules.last
- @rules << Rule.new(NT.new('S'), [NT.new('S', 0), NT.new('X', 1)], [NT.new('S', 0), NT.new('X', 1)], [0, 1])
- @start_nt << @rules.last
}
+ @rules << Rule.new(NT.new('S'), [NT.new('S', 0), NT.new('X', 1)], [NT.new('S', 0), NT.new('X', 1)], [0, 1])
+ @start_nt << @rules.last
end
def add_pass_through_rules a