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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --harmony-types
6
7
8 load("test/mjsunit/harmony/typesystem/typegen.js");
9
10
11 // In all the following functions, the size parameter (positive integer)
12 // denotes how many test cases will be tried. The variable test_size
13 // controls execution time of this test. It should not be too high.
14 let test_size = 1000;
15
16
17 function ValidInterfaceDeclarations(size) {
18 return Generate(size, [
19 new TestGen(4, ValidObjectTypes, [
20 t => "interface I " + t
21 ]),
22 new TestGen(1, ValidObjectTypes, [
23 t => "interface J extends I " + t,
24 t => "interface K extends I, J " + t,
25 t => "interface I<A> " + t,
26 t => "interface I<A, B> extends A, J<B> " + t
27 ])
28 ]);
29 }
30
31 function InvalidInterfaceDeclarations(size) {
32 return Generate(size, [
33 new TestGen(4, InvalidObjectTypes, [
34 t => "interface I " + t
35 ]),
36 new TestGen(1, InvalidObjectTypes, [
37 t => "interface J extends I " + t,
38 t => "interface K extends I, J " + t,
39 t => "interface I<A> " + t,
40 t => "interface I<A, B> extends A, J<B> " + t
41 ]),
42 "interface I<> {}"
43 ]);
44 }
45
46 (function TestInterfaceDeclarations(size) {
47 Test(size, [
48 new TestGen(4, ValidInterfaceDeclarations, [CheckValid]),
49 new TestGen(1, InvalidInterfaceDeclarations, [CheckInvalid]),
50 ]);
51 })(test_size);
OLDNEW
« 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