lib/code/parser/right_operation.rb in code-ruby-0.10.4 vs lib/code/parser/right_operation.rb in code-ruby-0.11.0

- old
+ new

@@ -2,11 +2,11 @@ class Code class Parser class RightOperation < Language def statement - raise NotImplementedError + Statement end def whitespace Whitespace end @@ -14,10 +14,10 @@ def whitespace? whitespace.maybe end def operator - raise NotImplementedError + str("") end def right_statement Statement end