Sha256: faca7fe2f3ece0048ee1167e691ff47d0705aada9e370f78ca7eddc148a3ab71
Contents?: true
Size: 399 Bytes
Versions: 70
Compression:
Stored size: 399 Bytes
Contents
# frozen_string_literal: true class Code class Parser class NotKeyword < Language def not_class NotKeyword end def whitespace Whitespace end def not_keyword str("not") end def root (not_keyword.aka(:operator) << whitespace << not_class.aka(:right)).aka( :not ) | Equal end end end end
Version data entries
70 entries across 70 versions & 1 rubygems