class SyntaxTree::YARV::LocalTable::Lookup

The result of looking up a local variable in the current local table.

Attributes

index[R]
level[R]
local[R]

Public Class Methods

new(local, index, level) click to toggle source
# File lib/syntax_tree/yarv/local_table.rb, line 34
def initialize(local, index, level)
  @local = local
  @index = index
  @level = level
end