Skip to content

Commit

Permalink
declarations are now done at the top-level world
Browse files Browse the repository at this point in the history
  • Loading branch information
awarth committed Oct 27, 2008
1 parent 4b660b9 commit 43c2e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Worlds2_Library.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ GlobalScope.prototype = {
has: function(n) { return thisWorld.has(this, n) },
get: function(n) { return thisWorld.get(this, n) },
set: function(n, v) { return thisWorld.set(this, n, v) },
decl: function(n, v) { return thisWorld.set(this, n, v) },
decl: function(n, v) { return baseWorld.set(this, n, v) },
makeChild: function() { return new ActivationRecord(this) }
}

Expand Down

0 comments on commit 43c2e4f

Please sign in to comment.