OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 7892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
7903 static const ParserFlag always_flags[] = {kAllowTypes}; | 7903 static const ParserFlag always_flags[] = {kAllowTypes}; |
7904 RunParserSyncTest(untyped_context_data, correct_data, kError, NULL, 0, | 7904 RunParserSyncTest(untyped_context_data, correct_data, kError, NULL, 0, |
7905 always_flags, arraysize(always_flags)); | 7905 always_flags, arraysize(always_flags)); |
7906 RunParserSyncTest(typed_context_data, correct_data, kSuccess, NULL, 0, | 7906 RunParserSyncTest(typed_context_data, correct_data, kSuccess, NULL, 0, |
7907 always_flags, arraysize(always_flags)); | 7907 always_flags, arraysize(always_flags)); |
7908 RunParserSyncTest(untyped_context_data, error_data, kError, NULL, 0, | 7908 RunParserSyncTest(untyped_context_data, error_data, kError, NULL, 0, |
7909 always_flags, arraysize(always_flags)); | 7909 always_flags, arraysize(always_flags)); |
7910 RunParserSyncTest(typed_context_data, error_data, kError, NULL, 0, | 7910 RunParserSyncTest(typed_context_data, error_data, kError, NULL, 0, |
7911 always_flags, arraysize(always_flags)); | 7911 always_flags, arraysize(always_flags)); |
7912 } | 7912 } |
7913 | |
7914 TEST(TypedModeInterfaceDeclarations) { | |
7915 const char* untyped_context_data[][2] = {{"", ""}, {NULL, NULL}}; | |
7916 const char* typed_context_data[][2] = {{"'use types'; ", ""}, {NULL, NULL}}; | |
7917 | |
7918 const char* correct_data[] = { | |
7919 "interface I { f(x: number) : boolean }", | |
7920 "interface J extends I { g(x: number) : boolean }", | |
7921 "interface K extends I, J { h(x: number) : boolean }", | |
7922 "interface I<A> {}", | |
7923 "interface I<A, B> extends A, J<B> {}", | |
7924 NULL | |
7925 }; | |
7926 | |
7927 const char* error_data[] = { | |
7928 "interface I { x: () }", | |
rossberg
2016/04/18 11:06:23
interface {}
interface extends I {}
nickie
2016/04/19 17:19:01
Done.
| |
7929 "interface I { f(a: ()) }", | |
7930 "interface I<> {}", | |
7931 NULL | |
7932 }; | |
7933 | |
7934 static const ParserFlag always_flags[] = {kAllowTypes}; | |
7935 RunParserSyncTest(untyped_context_data, correct_data, kError, NULL, 0, | |
7936 always_flags, arraysize(always_flags)); | |
7937 RunParserSyncTest(typed_context_data, correct_data, kSuccess, NULL, 0, | |
7938 always_flags, arraysize(always_flags)); | |
7939 RunParserSyncTest(untyped_context_data, error_data, kError, NULL, 0, | |
7940 always_flags, arraysize(always_flags)); | |
7941 RunParserSyncTest(typed_context_data, error_data, kError, NULL, 0, | |
7942 always_flags, arraysize(always_flags)); | |
7943 } | |
OLD | NEW |