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

Unified Diff: test/mjsunit/harmony/typesystem/interface-declarations.js

Issue 1849803002: Add parsing for interface declarations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@types-1850663002-class-decl
Patch Set: Add more tests Created 4 years, 8 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/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/typesystem/interface-declarations.js
diff --git a/test/mjsunit/harmony/typesystem/interface-declarations.js b/test/mjsunit/harmony/typesystem/interface-declarations.js
new file mode 100644
index 0000000000000000000000000000000000000000..f6d3242fb64f9bb995c0387ebbcb3cb130edfb5a
--- /dev/null
+++ b/test/mjsunit/harmony/typesystem/interface-declarations.js
@@ -0,0 +1,51 @@
+// Copyright 2016 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.
+
+// Flags: --harmony-types
+
+
+load("test/mjsunit/harmony/typesystem/typegen.js");
+
+
+// In all the following functions, the size parameter (positive integer)
+// denotes how many test cases will be tried. The variable test_size
+// controls execution time of this test. It should not be too high.
+let test_size = 1000;
+
+
+function ValidInterfaceDeclarations(size) {
+ return Generate(size, [
+ new TestGen(4, ValidObjectTypes, [
+ t => "interface I " + t
+ ]),
+ new TestGen(1, ValidObjectTypes, [
+ t => "interface J extends I " + t,
+ t => "interface K extends I, J " + t,
+ t => "interface I<A> " + t,
+ t => "interface I<A, B> extends A, J<B> " + t
+ ])
+ ]);
+}
+
+function InvalidInterfaceDeclarations(size) {
+ return Generate(size, [
+ new TestGen(4, InvalidObjectTypes, [
+ t => "interface I " + t
+ ]),
+ new TestGen(1, InvalidObjectTypes, [
+ t => "interface J extends I " + t,
+ t => "interface K extends I, J " + t,
+ t => "interface I<A> " + t,
+ t => "interface I<A, B> extends A, J<B> " + t
+ ]),
+ "interface I<> {}"
+ ]);
+}
+
+(function TestInterfaceDeclarations(size) {
+ Test(size, [
+ new TestGen(4, ValidInterfaceDeclarations, [CheckValid]),
+ new TestGen(1, InvalidInterfaceDeclarations, [CheckInvalid]),
+ ]);
+})(test_size);
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698