Home | History | Annotate | Download | only in harmony

Lines Matching refs:use

2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 "use strict";
38 function constDecl0(use) {
39 return "(function() { const constvar = 1; " + use + "; });";
43 function constDecl1(use) {
44 return "(function() { " + use + "; const constvar = 1; });";
49 function constDecl2(use) {
50 use = "eval('(function() { " + use + " })')";
51 return "(function() { const constvar = 1; " + use + "; })();";
55 function constDecl3(use) {
56 use = "eval('(function() { " + use + " })')";
57 return "(function() { " + use + "; const constvar = 1; })();";
62 function constDecl4(use) {
63 return "(function() { { const constvar = 1; " + use + "; } });";
67 function constDecl5(use) {
68 return "(function() { { " + use + "; const constvar = 1; } });";
73 function constDecl6(use) {
74 use = "eval('(function() {" + use + "})')";
75 return "(function() { { const constvar = 1; " + use + "; } })();";
79 function constDecl7(use) {
80 use = "eval('(function() {" + use + "})')";
81 return "(function() { { " + use + "; const constvar = 1; } })();";
86 function constDecl8(use) {
87 return "(function constvar() { " + use + "; });";
92 function constDecl9(use) {
93 use = "eval('(function(){" + use + "})')";
94 return "(function constvar() { " + use + "; })();";
115 'use strict';