Home
last modified time | relevance | path

Searched refs:funbind (Results 1 – 1 of 1) sorted by relevance

/external/v8/test/mjsunit/harmony/
Dblock-conflicts.js115 var funbind = "function x() {}"; variable
148 TestConflict(letbinds[l] + funbind);
149 TestConflict(funbind + letbinds[l]);
151 TestNoConflict(letbinds[l] + '{' + funbind + '}');
152 TestNoConflict('{' + funbind + '}' + letbinds[l]);
153 TestNoConflict(funbind + '{' + letbinds[l] + '}');
154 TestNoConflict('{' + letbinds[l] + '}' + funbind);
156 TestNoConflict('for (' + letbinds[l] + '0;) {' + funbind + '}');
165 TestLocalConflict(varbinds[v] + funbind);
166 TestLocalConflict(funbind + varbinds[v]);
[all …]