Lines Matching refs:varbinds
89 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] + '}');
152 for (var v = 0; v < varbinds.length; ++v) {
154 TestLocalConflict(varbinds[v] + funbind);
155 TestLocalConflict(funbind + varbinds[v]);
157 TestLocalConflict(funbind + '{' + varbinds[v] + '}');
158 TestLocalConflict('{' + varbinds[v] +'}' + funbind);
159 TestNoConflict(varbinds[v] + '{' + funbind + '}');
160 TestNoConflict('{' + funbind + '}' + varbinds[v]);
162 TestNoConflict('for (' + varbinds[v] + '0;) {' + funbind + '}');
166 for (var v = 0; v < varbinds.length; ++v) {
167 TestNoConflict('try {} catch(x) {' + varbinds[v] + '}');
171 for (var v = 0; v < varbinds.length; ++v) {
172 TestNoConflict('(function (x) {' + varbinds[v] + '})();');