@@ -48,7 +48,7 @@ export function Template(text, opts) {
4848Template . prototype = {
4949 compile : function ( ) {
5050 var opts = this . opts ;
51- eval ( " var " + opts . varName + " = something();" ) ; // $ Alert
51+ eval ( " var " + opts . varName + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
5252 } ,
5353 // The below are justs tests that ensure the global-access-path computations terminate.
5454 pathsTerminate1 : function ( node , prev ) {
@@ -100,10 +100,10 @@ export class AccessPathClass {
100100 }
101101
102102 doesTaint ( ) {
103- eval ( " var " + this . options1 . taintedOption + " = something();" ) ; // $ Alert
104- eval ( " var " + this . options2 . taintedOption + " = something();" ) ; // $ Alert
105- eval ( " var " + this . options3 . taintedOption + " = something();" ) ; // $ Alert
106- eval ( " var " + this . taint + " = something();" ) ; // $ Alert
103+ eval ( " var " + this . options1 . taintedOption + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
104+ eval ( " var " + this . options2 . taintedOption + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
105+ eval ( " var " + this . options3 . taintedOption + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
106+ eval ( " var " + this . taint + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
107107 }
108108}
109109
@@ -132,10 +132,10 @@ export class AccessPathClassBB {
132132 }
133133
134134 doesTaint ( ) {
135- eval ( " var " + this . options1 . taintedOption + " = something();" ) ; // $ Alert
136- eval ( " var " + this . options2 . taintedOption + " = something();" ) ; // $ Alert
137- eval ( " var " + this . options3 . taintedOption + " = something();" ) ; // $ Alert
138- eval ( " var " + this . taint + " = something();" ) ; // $ Alert
135+ eval ( " var " + this . options1 . taintedOption + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
136+ eval ( " var " + this . options2 . taintedOption + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
137+ eval ( " var " + this . options3 . taintedOption + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
138+ eval ( " var " + this . taint + " = something();" ) ; // $ MISSING: Alert - due to lack of localFieldStep
139139 }
140140 }
141141
0 commit comments