Lines Matching refs:varbinds
87 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] + '}');
150 for (var v = 0; v < varbinds.length; ++v) {
152 TestLocalConflict(varbinds[v] + funbind);
153 TestLocalConflict(funbind + varbinds[v]);
155 TestLocalConflict(funbind + '{' + varbinds[v] + '}');
156 TestLocalConflict('{' + varbinds[v] +'}' + funbind);
157 TestNoConflict(varbinds[v] + '{' + funbind + '}');
158 TestNoConflict('{' + funbind + '}' + varbinds[v]);
160 TestNoConflict('for (' + varbinds[v] + '0;) {' + funbind + '}');
164 for (var v = 0; v < varbinds.length; ++v) {
165 TestNoConflict('try {} catch(x) {' + varbinds[v] + '}');
169 for (var v = 0; v < varbinds.length; ++v) {
170 TestNoConflict('(function (x) {' + varbinds[v] + '})();');