You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
parsedFn.exp=originalText;// Needed to pretend to be $interpolate for tests copied from interpolateSpec.js
99
-
parsedFn.expressions=newArray(this.expressionFns.length);// Require this to call $compile.$$addBindingInfo() which allows Protractor to find elements by binding.
98
+
parsedFn['exp']=originalText;// Needed to pretend to be $interpolate for tests copied from interpolateSpec.js
99
+
parsedFn['expressions']=newArray(this.expressionFns.length);// Require this to call $compile.$$addBindingInfo() which allows Protractor to find elements by binding.
this.parsedFn.exp=this.expressionFn.exp;// Needed to pretend to be $interpolate for tests copied from interpolateSpec.js
416
-
this.parsedFn.expressions=this.expressionFn.expressions;// Require this to call $compile.$$addBindingInfo() which allows Protractor to find elements by binding.
415
+
this.parsedFn['exp']=this.expressionFn['exp'];// Needed to pretend to be $interpolate for tests copied from interpolateSpec.js
416
+
this.parsedFn['expressions']=this.expressionFn['expressions'];// Require this to call $compile.$$addBindingInfo() which allows Protractor to find elements by binding.
417
417
}
418
418
this.rule=null;
419
419
};
@@ -461,7 +461,8 @@ MessageFormatParser.prototype.ruleInAngularExpression = function ruleInAngularEx
0 commit comments