Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/harmony/
Dblock-conflicts-sloppy.js73 var letbinds = [ "let x;", variable
98 for (var l = 0; l < letbinds.length; ++l) {
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]);
110 if (forCompatible(letbinds[l])) {
111 TestConflict('for (' + letbinds[l] + '0;) {' + varbinds[v] + '}');
[all …]
/external/v8/test/mjsunit/es6/
Dblock-conflicts.js71 var letbinds = [ "let x;", variable
96 for (var l = 0; l < letbinds.length; ++l) {
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]);
108 if (forCompatible(letbinds[l])) {
109 TestConflict('for (' + letbinds[l] + '0;) {' + varbinds[v] + '}');
[all …]