Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/harmony/
Dblock-conflicts-sloppy.js89 var varbinds = [ "var x;", variable
100 for (var v = 0; v < varbinds.length; ++v) {
102 TestConflict(letbinds[l] + varbinds[v]);
103 TestConflict(varbinds[v] + letbinds[l]);
105 TestConflict(letbinds[l] + '{' + varbinds[v] + '}');
106 TestConflict('{' + varbinds[v] +'}' + letbinds[l]);
107 TestNoConflict(varbinds[v] + '{' + letbinds[l] + '}');
108 TestNoConflict('{' + letbinds[l] + '}' + varbinds[v]);
111 TestConflict('for (' + letbinds[l] + '0;) {' + varbinds[v] + '}');
113 TestNoConflict('for (' + varbinds[v] + '0;) {' + letbinds[l] + '}');
[all …]
/external/v8/test/mjsunit/es6/
Dblock-conflicts.js87 var varbinds = [ "var x;", variable
98 for (var v = 0; v < varbinds.length; ++v) {
100 TestConflict(letbinds[l] + varbinds[v]);
101 TestConflict(varbinds[v] + letbinds[l]);
103 TestConflict(letbinds[l] + '{' + varbinds[v] + '}');
104 TestConflict('{' + varbinds[v] +'}' + letbinds[l]);
105 TestNoConflict(varbinds[v] + '{' + letbinds[l] + '}');
106 TestNoConflict('{' + letbinds[l] + '}' + varbinds[v]);
109 TestConflict('for (' + letbinds[l] + '0;) {' + varbinds[v] + '}');
111 TestNoConflict('for (' + varbinds[v] + '0;) {' + letbinds[l] + '}');
[all …]