Class: RLSM::RE::Prim
Overview
Instance Attribute Summary
Attributes inherited from SyntaxNode
#content
Instance Method Summary
collapse
Methods inherited from SyntaxNode
#<=>, [], #initialize, #inspect, #to_s
Instance Method Details
#first ⇒ Object
331
332
333
|
# File 'lib/rlsm/regexp_parser.rb', line 331
def first
[ @content ]
end
|
#follow ⇒ Object
339
340
341
|
# File 'lib/rlsm/regexp_parser.rb', line 339
def follow
[]
end
|
#last ⇒ Object
335
336
337
|
# File 'lib/rlsm/regexp_parser.rb', line 335
def last
[ @content ]
end
|
#null? ⇒ Boolean
327
328
329
|
# File 'lib/rlsm/regexp_parser.rb', line 327
def null?
false
end
|