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: () }", |
| 7929 "interface {}", |
| 7930 "interface extends I {}", |
| 7931 "interface I { f(a: ()) }", |
| 7932 "interface I<> {}", |
| 7933 NULL |
| 7934 }; |
| 7935 |
| 7936 static const ParserFlag always_flags[] = {kAllowTypes}; |
| 7937 RunParserSyncTest(untyped_context_data, correct_data, kError, NULL, 0, |
| 7938 always_flags, arraysize(always_flags)); |
| 7939 RunParserSyncTest(typed_context_data, correct_data, kSuccess, NULL, 0, |
| 7940 always_flags, arraysize(always_flags)); |
| 7941 RunParserSyncTest(untyped_context_data, error_data, kError, NULL, 0, |
| 7942 always_flags, arraysize(always_flags)); |
| 7943 RunParserSyncTest(typed_context_data, error_data, kError, NULL, 0, |
| 7944 always_flags, arraysize(always_flags)); |
| 7945 } |
OLD | NEW |