Method: TestML::Compiler::Lite#peek

Defined in:
lib/testml/compiler/lite.rb

#peek(index = 1) ⇒ Object



177
178
179
180
# File 'lib/testml/compiler/lite.rb', line 177

def peek(index=1)
  fail if index > @tokens.size
  @tokens[index - 1]
end