2018-07-12 15:01:02 +00:00
|
|
|
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// The actual regression test
|
2018-11-23 16:26:02 +00:00
|
|
|
assertThrows("(import(foo)) =>", undefined, "Invalid destructuring assignment target");
|
2018-07-12 15:01:02 +00:00
|
|
|
|
|
|
|
// Other related tests
|
2018-11-23 16:26:02 +00:00
|
|
|
assertThrows("import(foo) =>", undefined, "Malformed arrow function parameter list");
|
|
|
|
assertThrows("(a, import(foo)) =>", undefined, "Invalid destructuring assignment target");
|
|
|
|
assertThrows("(1, import(foo)) =>", undefined, "Invalid destructuring assignment target");
|
2018-07-12 15:01:02 +00:00
|
|
|
assertThrows("(super(foo)) =>", undefined, "'super' keyword unexpected here");
|
2018-11-23 16:26:02 +00:00
|
|
|
assertThrows("(bar(foo)) =>", undefined, "Invalid destructuring assignment target");
|
2018-07-12 15:01:02 +00:00
|
|
|
|
|
|
|
// No syntax errors
|
|
|
|
assertThrows("[import(foo).then] = [1];", undefined, "foo is not defined");
|
|
|
|
assertThrows("[[import(foo).then]] = [[1]];", undefined, "foo is not defined");
|