Sha256: c57feeaded7c5590a6615fa8e5d0ddbd00e5dcba88f48dc707af722db9e6d2a4

Contents?: true

Size: 1.29 KB

Versions: 3

Compression:

Stored size: 1.29 KB

Contents

module CoffeeScript

  # Scope objects form a tree corresponding to the shape of the function
  # definitions present in the script. They provide lexical scope, to determine
  # whether a variable has been seen before or if it needs to be declared.
  class Scope

    attr_reader :parent, :temp_variable

    # Initialize a scope with its parent, for lookups up the chain.
    def initialize(parent=nil)
      @parent = parent
      @variables = {}
      @temp_variable = @parent ? @parent.temp_variable : 'a'
    end

    # Look up a variable in lexical scope, or declare it if not found.
    def find(name, remote=false)
      found = check(name, remote)
      return found if found || remote
      @variables[name.to_sym] = true
      found
    end

    # Just check to see if a variable has already been declared.
    def check(name, remote=false)
      return true if @variables[name.to_sym]
      @parent && @parent.find(name, true)
    end

    # You can reset a found variable on the immediate scope.
    def reset(name)
      @variables[name.to_sym] = false
    end

    # Find an available, short, name for a compiler-generated variable.
    def free_variable
      @temp_variable.succ! while check(@temp_variable)
      @variables[@temp_variable.to_sym] = true
      @temp_variable.dup
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
coffee-script-0.1.2 lib/coffee_script/scope.rb
coffee-script-0.1.1 lib/coffee_script/scope.rb
coffee-script-0.1.0 lib/coffee_script/scope.rb