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

Unified Diff: tests/service_tests/conformance/conformance_service.idl

Issue 2035023003: Remove service-compiler related code. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 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
Index: tests/service_tests/conformance/conformance_service.idl
diff --git a/tests/service_tests/conformance/conformance_service.idl b/tests/service_tests/conformance/conformance_service.idl
deleted file mode 100644
index c88316751518487ac0c0c16783736619723eadd3..0000000000000000000000000000000000000000
--- a/tests/service_tests/conformance/conformance_service.idl
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE.md file.
-
-service ConformanceService {
- int32 getAge(Person* person);
- int32 getBoxedAge(PersonBox* box);
- AgeStats* getAgeStats(Person* person);
- AgeStats* createAgeStats(int32 averageAge, int32 sum);
- Person* createPerson(int32 children);
- Node* createNode(int32 depth);
- int32 count(Person* person);
-
- int32 depth(Node* node);
- void foo();
- int32 bar(Empty* empty);
-
- int32 ping();
-
- TableFlip* flipTable(TableFlip* flip);
- InternalFields* internalize(InternalFields* internalFields);
-}
-
-struct Empty { }
-
-struct AgeStats {
- int32 averageAge;
- int32 sum;
-}
-
-struct Person {
- String name;
- int32 age;
- List<Person> children;
-}
-
-struct Large {
- int32 y;
- Small s;
-}
-
-struct Small {
- int32 x;
-}
-
-struct PersonBox {
- Person* person;
-}
-
-struct Node {
- union {
- int32 num;
- bool cond;
- Cons cons;
- void nil;
- }
-}
-
-struct Cons {
- Node* fst;
- Node* snd;
-}
-
-struct TableFlip {
- String flip;
-}
-
-struct InternalFields {
- int32 offset;
- String segment;
-}
« no previous file with comments | « tests/dartino_tests/dartino_tests.status ('k') | tests/service_tests/conformance/conformance_service_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698