Sha256: 97a4627e0ae812e764af27a43737ab9cb12c366f8fe6b4e6945a198a4f034ac0
Contents?: true
Size: 409 Bytes
Versions: 10
Compression:
Stored size: 409 Bytes
Contents
require_relative 'grm_symbol' # Load superclass module Rley # This module is used as a namespace module Syntax # This module is used as a namespace # A terminal symbol represents a class of words in the language # defined the grammar. class Terminal < GrmSymbol def initialize(aName) super(aName) end end # class end # module end # module # End of file
Version data entries
10 entries across 10 versions & 1 rubygems