summaryrefslogtreecommitdiff
path: root/test/language
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-01-10 15:44:22 -0500
committerRick Waldron <waldron.rick@gmail.com>2018-01-10 15:44:56 -0500
commit5cd8e7bd53b90b780351d5221296bb99ead5e09e (patch)
tree6a3cbdb553739078de7ea3017f7b26f8feb92504 /test/language
parent0278a7d2a59e8f163851913f1ab0e1d483a016fd (diff)
downloadqtdeclarative-testsuites-5cd8e7bd53b90b780351d5221296bb99ead5e09e.tar.gz
Fix esid: static-semantics-hasproductionintailposition => sec-static-semantics-hascallintailposition
Diffstat (limited to 'test/language')
-rw-r--r--test/language/expressions/call/tco-call-args.js2
-rw-r--r--test/language/expressions/call/tco-member-args.js2
-rw-r--r--test/language/expressions/comma/tco-final.js2
-rw-r--r--test/language/expressions/conditional/tco-cond.js2
-rw-r--r--test/language/expressions/conditional/tco-pos.js2
-rw-r--r--test/language/expressions/logical-and/tco-right.js2
-rw-r--r--test/language/expressions/logical-or/tco-right.js2
-rw-r--r--test/language/expressions/tagged-template/tco-call.js2
-rw-r--r--test/language/expressions/tagged-template/tco-member.js2
-rw-r--r--test/language/expressions/tco-pos.js2
-rw-r--r--test/language/statements/block/tco-stmt-list.js2
-rw-r--r--test/language/statements/block/tco-stmt.js2
-rw-r--r--test/language/statements/do-while/tco-body.js2
-rw-r--r--test/language/statements/for/tco-const-body.js2
-rw-r--r--test/language/statements/for/tco-let-body.js2
-rw-r--r--test/language/statements/for/tco-lhs-body.js2
-rw-r--r--test/language/statements/for/tco-var-body.js2
-rw-r--r--test/language/statements/if/tco-else-body.js2
-rw-r--r--test/language/statements/if/tco-if-body.js2
-rw-r--r--test/language/statements/labeled/tco.js2
-rw-r--r--test/language/statements/return/tco.js2
-rw-r--r--test/language/statements/switch/tco-case-body-dflt.js2
-rw-r--r--test/language/statements/switch/tco-case-body.js2
-rw-r--r--test/language/statements/switch/tco-dftl-body.js2
-rw-r--r--test/language/statements/try/tco-catch-finally.js2
-rw-r--r--test/language/statements/try/tco-catch.js2
-rw-r--r--test/language/statements/try/tco-finally.js2
-rw-r--r--test/language/statements/while/tco-body.js2
28 files changed, 28 insertions, 28 deletions
diff --git a/test/language/expressions/call/tco-call-args.js b/test/language/expressions/call/tco-call-args.js
index b18641651..0d42ea7e1 100644
--- a/test/language/expressions/call/tco-call-args.js
+++ b/test/language/expressions/call/tco-call-args.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/call/tco-member-args.js b/test/language/expressions/call/tco-member-args.js
index 24b35741c..4bfddb4f7 100644
--- a/test/language/expressions/call/tco-member-args.js
+++ b/test/language/expressions/call/tco-member-args.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/comma/tco-final.js b/test/language/expressions/comma/tco-final.js
index 395c28e12..b1e3ac311 100644
--- a/test/language/expressions/comma/tco-final.js
+++ b/test/language/expressions/comma/tco-final.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/conditional/tco-cond.js b/test/language/expressions/conditional/tco-cond.js
index b43251c9e..f6006c59f 100644
--- a/test/language/expressions/conditional/tco-cond.js
+++ b/test/language/expressions/conditional/tco-cond.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/conditional/tco-pos.js b/test/language/expressions/conditional/tco-pos.js
index ea2087121..61ecdd01c 100644
--- a/test/language/expressions/conditional/tco-pos.js
+++ b/test/language/expressions/conditional/tco-pos.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/logical-and/tco-right.js b/test/language/expressions/logical-and/tco-right.js
index 7f34dcfdb..d86e7a770 100644
--- a/test/language/expressions/logical-and/tco-right.js
+++ b/test/language/expressions/logical-and/tco-right.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/logical-or/tco-right.js b/test/language/expressions/logical-or/tco-right.js
index bd2bd1616..f08aade54 100644
--- a/test/language/expressions/logical-or/tco-right.js
+++ b/test/language/expressions/logical-or/tco-right.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/tagged-template/tco-call.js b/test/language/expressions/tagged-template/tco-call.js
index 180f47471..340e802e4 100644
--- a/test/language/expressions/tagged-template/tco-call.js
+++ b/test/language/expressions/tagged-template/tco-call.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/tagged-template/tco-member.js b/test/language/expressions/tagged-template/tco-member.js
index ea1fbbddc..5e3796792 100644
--- a/test/language/expressions/tagged-template/tco-member.js
+++ b/test/language/expressions/tagged-template/tco-member.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/expressions/tco-pos.js b/test/language/expressions/tco-pos.js
index 83ec01155..13bf4a0f7 100644
--- a/test/language/expressions/tco-pos.js
+++ b/test/language/expressions/tco-pos.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/block/tco-stmt-list.js b/test/language/statements/block/tco-stmt-list.js
index cda797844..f516711ba 100644
--- a/test/language/statements/block/tco-stmt-list.js
+++ b/test/language/statements/block/tco-stmt-list.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/block/tco-stmt.js b/test/language/statements/block/tco-stmt.js
index d232faf44..d6176d078 100644
--- a/test/language/statements/block/tco-stmt.js
+++ b/test/language/statements/block/tco-stmt.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/do-while/tco-body.js b/test/language/statements/do-while/tco-body.js
index 1e55dbf57..7be78257c 100644
--- a/test/language/statements/do-while/tco-body.js
+++ b/test/language/statements/do-while/tco-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/for/tco-const-body.js b/test/language/statements/for/tco-const-body.js
index 2cd919bd2..a72499f60 100644
--- a/test/language/statements/for/tco-const-body.js
+++ b/test/language/statements/for/tco-const-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/for/tco-let-body.js b/test/language/statements/for/tco-let-body.js
index 5d13ee4e8..36b643f4e 100644
--- a/test/language/statements/for/tco-let-body.js
+++ b/test/language/statements/for/tco-let-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/for/tco-lhs-body.js b/test/language/statements/for/tco-lhs-body.js
index 1ecdaf675..6a339e2f3 100644
--- a/test/language/statements/for/tco-lhs-body.js
+++ b/test/language/statements/for/tco-lhs-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/for/tco-var-body.js b/test/language/statements/for/tco-var-body.js
index 13a115720..b70da9fd7 100644
--- a/test/language/statements/for/tco-var-body.js
+++ b/test/language/statements/for/tco-var-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/if/tco-else-body.js b/test/language/statements/if/tco-else-body.js
index ff3ee9c2d..ae0767ca2 100644
--- a/test/language/statements/if/tco-else-body.js
+++ b/test/language/statements/if/tco-else-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/if/tco-if-body.js b/test/language/statements/if/tco-if-body.js
index 7ab6d054b..d8a17168e 100644
--- a/test/language/statements/if/tco-if-body.js
+++ b/test/language/statements/if/tco-if-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/labeled/tco.js b/test/language/statements/labeled/tco.js
index 5d059a354..3e46ff03a 100644
--- a/test/language/statements/labeled/tco.js
+++ b/test/language/statements/labeled/tco.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/return/tco.js b/test/language/statements/return/tco.js
index 439926f99..f6257e40e 100644
--- a/test/language/statements/return/tco.js
+++ b/test/language/statements/return/tco.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Expression within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/switch/tco-case-body-dflt.js b/test/language/statements/switch/tco-case-body-dflt.js
index 449df6b84..b48a94851 100644
--- a/test/language/statements/switch/tco-case-body-dflt.js
+++ b/test/language/statements/switch/tco-case-body-dflt.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/switch/tco-case-body.js b/test/language/statements/switch/tco-case-body.js
index ee23461dd..8366f7453 100644
--- a/test/language/statements/switch/tco-case-body.js
+++ b/test/language/statements/switch/tco-case-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/switch/tco-dftl-body.js b/test/language/statements/switch/tco-dftl-body.js
index 4f1ad1a10..f452a39f5 100644
--- a/test/language/statements/switch/tco-dftl-body.js
+++ b/test/language/statements/switch/tco-dftl-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/try/tco-catch-finally.js b/test/language/statements/try/tco-catch-finally.js
index 31d1dc670..6643e6ee4 100644
--- a/test/language/statements/try/tco-catch-finally.js
+++ b/test/language/statements/try/tco-catch-finally.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/try/tco-catch.js b/test/language/statements/try/tco-catch.js
index 7167f632f..53466e265 100644
--- a/test/language/statements/try/tco-catch.js
+++ b/test/language/statements/try/tco-catch.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/try/tco-finally.js b/test/language/statements/try/tco-finally.js
index 1ee0295fa..28b9a0b5a 100644
--- a/test/language/statements/try/tco-finally.js
+++ b/test/language/statements/try/tco-finally.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
diff --git a/test/language/statements/while/tco-body.js b/test/language/statements/while/tco-body.js
index 0168e5685..92d2c28e5 100644
--- a/test/language/statements/while/tco-body.js
+++ b/test/language/statements/while/tco-body.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Statement within statement is a candidate for tail-call optimization.
-esid: static-semantics-hasproductionintailposition
+esid: sec-static-semantics-hascallintailposition
flags: [onlyStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]