Class: RubyLexer::NestedContexts::NestedContext

Inherits:
Object
  • Object
show all
Defined in:
lib/rubylexer/context.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(starter, ender, linenum) ⇒ NestedContext Also known as: dflt_initialize

Returns a new instance of NestedContext.



27
28
29
# File 'lib/rubylexer/context.rb', line 27

def initialize(starter,ender,linenum)
  @starter,@ender,@linenum=starter,ender,linenum
end

Instance Attribute Details

#enderObject (readonly)

Returns the value of attribute ender.



25
26
27
# File 'lib/rubylexer/context.rb', line 25

def ender
  @ender
end

#linenumObject (readonly)

Returns the value of attribute linenum.



26
27
28
# File 'lib/rubylexer/context.rb', line 26

def linenum
  @linenum
end

#starterObject (readonly)

Returns the value of attribute starter.



24
25
26
# File 'lib/rubylexer/context.rb', line 24

def starter
  @starter
end

Instance Method Details

#lhs=(*x) ⇒ Object

do nothing



38
# File 'lib/rubylexer/context.rb', line 38

def lhs=*x; end

#matches?(tok) ⇒ Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/rubylexer/context.rb', line 33

def matches?(tok)
  @ender==tok
end

#see(lxr, msg) ⇒ Object



37
# File 'lib/rubylexer/context.rb', line 37

def see lxr,msg; end

#wantarrowObject



39
# File 'lib/rubylexer/context.rb', line 39

def wantarrow; false end