Class: SexpProcessor::Environment

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

Overview

I really hate this here, but I hate subdirs in my lib dir more… I guess it is kinda like shaving… I’ll split this out when it itches too much…

Instance Method Summary collapse

Constructor Details

#initializeEnvironment

Returns a new instance of Environment.



351
352
353
354
# File 'lib/sexp_processor.rb', line 351

def initialize
  @env = []
  @env.unshift({})
end

Instance Method Details

#[](name) ⇒ Object

TODO: depth_of



366
367
368
369
# File 'lib/sexp_processor.rb', line 366

def [] name
  hash = @env.find { |closure| closure.has_key? name }
  hash[name] if hash
end

#[]=(name, val) ⇒ Object



371
372
373
374
# File 'lib/sexp_processor.rb', line 371

def []= name, val
  hash = @env.find { |closure| closure.has_key? name } || current
  hash[name] = val
end

#allObject



356
357
358
# File 'lib/sexp_processor.rb', line 356

def all
  @env.reverse.inject { |env, scope| env.merge scope }
end

#currentObject



376
377
378
# File 'lib/sexp_processor.rb', line 376

def current
  @env.first
end

#depthObject



360
361
362
# File 'lib/sexp_processor.rb', line 360

def depth
  @env.length
end

#scopeObject



380
381
382
383
384
385
386
387
388
# File 'lib/sexp_processor.rb', line 380

def scope
  @env.unshift({})
  begin
    yield
  ensure
    @env.shift
    raise "You went too far unextending env" if @env.empty?
  end
end