Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel committed Apr 22, 2014
1 parent c878949 commit 87eab7c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions babelsberg-js.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions babelsberg/constraintinterpreter.js
Expand Up @@ -11,7 +11,7 @@ Object.subclass("Babelsberg", {
if (!obj) return;
var cvar = ConstrainedVariable.findConstraintVariableFor(obj, accessor);
if (!cvar) return;
var cGetter = obj.__lookupSetter__(accessor),
var cGetter = obj.__lookupSetter__(accessor), //// not __lookupGetter__ ?
cSetter = obj.__lookupSetter__(accessor);
if (!cGetter && !cSetter) {
return;
Expand Down Expand Up @@ -199,7 +199,7 @@ Object.subclass('Constraint', {
} finally {
Constraint.current = null;
}
this.addPrimitiveConstraint(constraintObject);
this.addPrimitiveConstraint(constraintObject); //// isn't constraintObject always undefined in this scope?
},
addPrimitiveConstraint: function(obj) {
if (obj && !this.constraintobjects.include(obj)) {
Expand Down

0 comments on commit 87eab7c

Please sign in to comment.