Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1583)

Unified Diff: test/mjsunit/es8/syntactic-tail-call-simple.js

Issue 1955393002: [es8] Throw SyntaxError when tail call expressions occur in non-strict mode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/es8/syntactic-tail-call-parsing-sloppy.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/es8/syntactic-tail-call-simple.js
diff --git a/test/mjsunit/es8/syntactic-tail-call-simple.js b/test/mjsunit/es8/syntactic-tail-call-simple.js
index 02f235e6d38230fe81ba9acd0b10e658de768846..ec7ade6673bee066a4c7ddf377e03f8b412acf9f 100644
--- a/test/mjsunit/es8/syntactic-tail-call-simple.js
+++ b/test/mjsunit/es8/syntactic-tail-call-simple.js
@@ -5,9 +5,26 @@
// Flags: --allow-natives-syntax --harmony-explicit-tailcalls --stack-size=100
//
+// Tail calls work only in strict mode.
+//
+(function() {
+ function f(n) {
+ if (n <= 0) {
+ return "foo";
+ }
+ return f(n - 1);
+ }
+ assertThrows(()=>{ f(1e5) });
+ %OptimizeFunctionOnNextCall(f);
+ assertThrows(()=>{ f(1e5) });
+})();
+
+
+//
// Tail call normal functions.
//
(function() {
+ "use strict";
function f(n) {
if (n <= 0) {
return "foo";
@@ -21,6 +38,7 @@
(function() {
+ "use strict";
function f(n) {
if (n <= 0) {
return "foo";
@@ -34,6 +52,7 @@
(function() {
+ "use strict";
function f(n){
if (n <= 0) {
return "foo";
@@ -55,6 +74,7 @@
(function() {
+ "use strict";
function f(n){
if (n <= 0) {
return "foo";
@@ -79,6 +99,7 @@
// Tail call bound functions.
//
(function() {
+ "use strict";
function f0(n) {
if (n <= 0) {
return "foo";
@@ -96,6 +117,7 @@
(function() {
+ "use strict";
function f0(n){
if (n <= 0) {
return "foo";
« no previous file with comments | « test/mjsunit/es8/syntactic-tail-call-parsing-sloppy.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698