Sha256: e5288f13d33d64c7d1a5022cef59ba10c85df732308380b7a8846322e35199a4

Contents?: true

Size: 235 Bytes

Versions: 70

Compression:

Stored size: 235 Bytes

Contents

# frozen_string_literal: true

class Code
  class Parser
    class Nothing < Language
      def nothing_keyword
        str("nothing")
      end

      def root
        nothing_keyword.aka(:nothing) | Group
      end
    end
  end
end

Version data entries

70 entries across 70 versions & 1 rubygems

Version Path
code-ruby-1.2.5 lib/code/parser/nothing.rb
code-ruby-1.2.4 lib/code/parser/nothing.rb
code-ruby-1.2.3 lib/code/parser/nothing.rb
code-ruby-1.2.2 lib/code/parser/nothing.rb
code-ruby-1.2.1 lib/code/parser/nothing.rb
code-ruby-1.1.3 lib/code/parser/nothing.rb
code-ruby-1.1.1 lib/code/parser/nothing.rb
code-ruby-1.1.0 lib/code/parser/nothing.rb
code-ruby-1.0.0 lib/code/parser/nothing.rb
code-ruby-0.15.16 lib/code/parser/nothing.rb
code-ruby-0.15.15 lib/code/parser/nothing.rb
code-ruby-0.15.14 lib/code/parser/nothing.rb
code-ruby-0.15.13 lib/code/parser/nothing.rb
code-ruby-0.15.12 lib/code/parser/nothing.rb
code-ruby-0.15.11 lib/code/parser/nothing.rb
code-ruby-0.15.10 lib/code/parser/nothing.rb
code-ruby-0.15.9 lib/code/parser/nothing.rb
code-ruby-0.15.8 lib/code/parser/nothing.rb
code-ruby-0.15.7 lib/code/parser/nothing.rb
code-ruby-0.15.6 lib/code/parser/nothing.rb