compiler: update schemas from v0.5.2
This commit is contained in:
parent
593b356cda
commit
98c2d02744
3 changed files with 456 additions and 84 deletions
|
|
@ -1,25 +1,23 @@
|
|||
# Copyright (c) 2013, Kenton Varda <temporal@gmail.com>
|
||||
# All rights reserved.
|
||||
# Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
|
||||
# Licensed under the MIT License:
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are met:
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
# in the Software without restriction, including without limitation the rights
|
||||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
# copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the above copyright notice, this
|
||||
# list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
# this list of conditions and the following disclaimer in the documentation
|
||||
# and/or other materials provided with the distribution.
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
# THE SOFTWARE.
|
||||
|
||||
@0xd508eebdc2dc42b8;
|
||||
|
||||
|
|
@ -92,7 +90,7 @@ struct TestDefaults {
|
|||
float32Field @10 : Float32 = 1234.5;
|
||||
float64Field @11 : Float64 = -123e45;
|
||||
textField @12 : Text = "foo";
|
||||
dataField @13 : Data = "bar";
|
||||
dataField @13 : Data = 0x"62 61 72"; # "bar"
|
||||
structField @14 : TestAllTypes = (
|
||||
voidField = void,
|
||||
boolField = true,
|
||||
|
|
@ -160,10 +158,10 @@ struct TestDefaults {
|
|||
interfaceList @33 : List(Void); # TODO
|
||||
}
|
||||
|
||||
struct TestObject {
|
||||
objectField @0 :Object;
|
||||
struct TestAnyPointer {
|
||||
anyPointerField @0 :AnyPointer;
|
||||
|
||||
# Do not add any other fields here! Some tests rely on objectField being the last pointer
|
||||
# Do not add any other fields here! Some tests rely on anyPointerField being the last pointer
|
||||
# in the struct.
|
||||
}
|
||||
|
||||
|
|
@ -476,9 +474,134 @@ struct TestNewVersion {
|
|||
|
||||
struct TestStructUnion {
|
||||
un @0! :union {
|
||||
allTypes @1 :TestAllTypes;
|
||||
object @2 :TestObject;
|
||||
struct @1 :SomeStruct;
|
||||
object @2 :TestAnyPointer;
|
||||
}
|
||||
|
||||
struct SomeStruct {
|
||||
someText @0 :Text;
|
||||
moreText @1 :Text;
|
||||
}
|
||||
}
|
||||
|
||||
struct TestPrintInlineStructs {
|
||||
someText @0 :Text;
|
||||
|
||||
structList @1 :List(InlineStruct);
|
||||
struct InlineStruct {
|
||||
int32Field @0 :Int32;
|
||||
textField @1 :Text;
|
||||
}
|
||||
}
|
||||
|
||||
struct TestWholeFloatDefault {
|
||||
# At one point, these failed to compile in C++ because it would produce literals like "123f",
|
||||
# which is not valid; it needs to be "123.0f".
|
||||
field @0 :Float32 = 123;
|
||||
bigField @1 :Float32 = 2e30;
|
||||
const constant :Float32 = 456;
|
||||
const bigConstant :Float32 = 4e30;
|
||||
}
|
||||
|
||||
struct TestGenerics(Foo, Bar) {
|
||||
foo @0 :Foo;
|
||||
rev @1 :TestGenerics(Bar, Foo);
|
||||
|
||||
struct Inner {
|
||||
foo @0 :Foo;
|
||||
bar @1 :Bar;
|
||||
}
|
||||
|
||||
struct Inner2(Baz) {
|
||||
bar @0 :Bar;
|
||||
baz @1 :Baz;
|
||||
innerBound @2 :Inner;
|
||||
innerUnbound @3 :TestGenerics.Inner;
|
||||
|
||||
struct DeepNest(Qux) {
|
||||
foo @0 :Foo;
|
||||
bar @1 :Bar;
|
||||
baz @2 :Baz;
|
||||
qux @3 :Qux;
|
||||
}
|
||||
}
|
||||
|
||||
interface Interface(Qux) {
|
||||
call @0 Inner2(Text) -> (qux :Qux, gen :TestGenerics(TestAllTypes, TestAnyPointer));
|
||||
}
|
||||
|
||||
annotation ann(struct) :Foo;
|
||||
|
||||
using AliasFoo = Foo;
|
||||
using AliasInner = Inner;
|
||||
using AliasInner2 = Inner2;
|
||||
using AliasInner2Text = Inner2(Text);
|
||||
using AliasRev = TestGenerics(Bar, Foo);
|
||||
|
||||
struct UseAliases {
|
||||
foo @0 :AliasFoo;
|
||||
inner @1 :AliasInner;
|
||||
inner2 @2 :AliasInner2;
|
||||
inner2Bind @3 :AliasInner2(Text);
|
||||
inner2Text @4 :AliasInner2Text;
|
||||
revFoo @5 :AliasRev.AliasFoo;
|
||||
}
|
||||
}
|
||||
|
||||
struct TestGenericsWrapper(Foo, Bar) {
|
||||
value @0 :TestGenerics(Foo, Bar);
|
||||
}
|
||||
|
||||
struct TestGenericsWrapper2 {
|
||||
value @0 :TestGenericsWrapper(Text, TestAllTypes);
|
||||
}
|
||||
|
||||
interface TestImplicitMethodParams {
|
||||
call @0 [T, U] (foo :T, bar :U) -> TestGenerics(T, U);
|
||||
}
|
||||
|
||||
interface TestImplicitMethodParamsInGeneric(V) {
|
||||
call @0 [T, U] (foo :T, bar :U) -> TestGenerics(T, U);
|
||||
}
|
||||
|
||||
struct TestUseGenerics $TestGenerics(Text, Data).ann("foo") {
|
||||
basic @0 :TestGenerics(TestAllTypes, TestAnyPointer);
|
||||
inner @1 :TestGenerics(TestAllTypes, TestAnyPointer).Inner;
|
||||
inner2 @2 :TestGenerics(TestAllTypes, TestAnyPointer).Inner2(Text);
|
||||
unspecified @3 :TestGenerics;
|
||||
unspecifiedInner @4 :TestGenerics.Inner2(Text);
|
||||
wrapper @8 :TestGenericsWrapper(TestAllTypes, TestAnyPointer);
|
||||
cap @18 :TestGenerics(TestInterface, Text);
|
||||
genericCap @19 :TestGenerics(TestAllTypes, List(UInt32)).Interface(Data);
|
||||
|
||||
default @5 :TestGenerics(TestAllTypes, Text) =
|
||||
(foo = (int16Field = 123), rev = (foo = "text", rev = (foo = (int16Field = 321))));
|
||||
defaultInner @6 :TestGenerics(TestAllTypes, Text).Inner =
|
||||
(foo = (int16Field = 123), bar = "text");
|
||||
defaultUser @7 :TestUseGenerics = (basic = (foo = (int16Field = 123)));
|
||||
defaultWrapper @9 :TestGenericsWrapper(Text, TestAllTypes) =
|
||||
(value = (foo = "text", rev = (foo = (int16Field = 321))));
|
||||
defaultWrapper2 @10 :TestGenericsWrapper2 =
|
||||
(value = (value = (foo = "text", rev = (foo = (int16Field = 321)))));
|
||||
|
||||
aliasFoo @11 :TestGenerics(TestAllTypes, TestAnyPointer).AliasFoo = (int16Field = 123);
|
||||
aliasInner @12 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner
|
||||
= (foo = (int16Field = 123));
|
||||
aliasInner2 @13 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner2
|
||||
= (innerBound = (foo = (int16Field = 123)));
|
||||
aliasInner2Bind @14 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner2(List(UInt32))
|
||||
= (baz = [12, 34], innerBound = (foo = (int16Field = 123)));
|
||||
aliasInner2Text @15 :TestGenerics(TestAllTypes, TestAnyPointer).AliasInner2Text
|
||||
= (baz = "text", innerBound = (foo = (int16Field = 123)));
|
||||
aliasRev @16 :TestGenerics(TestAnyPointer, Text).AliasRev.AliasFoo = "text";
|
||||
|
||||
useAliases @17 :TestGenerics(TestAllTypes, List(UInt32)).UseAliases = (
|
||||
foo = (int16Field = 123),
|
||||
inner = (foo = (int16Field = 123)),
|
||||
inner2 = (innerBound = (foo = (int16Field = 123))),
|
||||
inner2Bind = (baz = "text", innerBound = (foo = (int16Field = 123))),
|
||||
inner2Text = (baz = "text", innerBound = (foo = (int16Field = 123))),
|
||||
revFoo = [12, 34, 56]);
|
||||
}
|
||||
|
||||
struct TestEmptyStruct {}
|
||||
|
|
@ -566,9 +689,164 @@ struct TestConstants {
|
|||
const globalInt :UInt32 = 12345;
|
||||
const globalText :Text = "foobar";
|
||||
const globalStruct :TestAllTypes = (int32Field = 54321);
|
||||
const globalPrintableStruct :TestPrintInlineStructs = (someText = "foo");
|
||||
const derivedConstant :TestAllTypes = (
|
||||
uInt32Field = .globalInt,
|
||||
textField = TestConstants.textConst,
|
||||
structField = TestConstants.structConst,
|
||||
int16List = TestConstants.int16ListConst,
|
||||
structList = TestConstants.structListConst);
|
||||
|
||||
const genericConstant :TestGenerics(TestAllTypes, Text) =
|
||||
(foo = (int16Field = 123), rev = (foo = "text", rev = (foo = (int16Field = 321))));
|
||||
|
||||
interface TestInterface {
|
||||
foo @0 (i :UInt32, j :Bool) -> (x :Text);
|
||||
bar @1 () -> ();
|
||||
baz @2 (s: TestAllTypes);
|
||||
}
|
||||
|
||||
interface TestExtends extends(TestInterface) {
|
||||
qux @0 ();
|
||||
corge @1 TestAllTypes -> ();
|
||||
grault @2 () -> TestAllTypes;
|
||||
}
|
||||
|
||||
interface TestExtends2 extends(TestExtends) {}
|
||||
|
||||
interface TestPipeline {
|
||||
getCap @0 (n: UInt32, inCap :TestInterface) -> (s: Text, outBox :Box);
|
||||
testPointers @1 (cap :TestInterface, obj :AnyPointer, list :List(TestInterface)) -> ();
|
||||
|
||||
struct Box {
|
||||
cap @0 :TestInterface;
|
||||
}
|
||||
}
|
||||
|
||||
interface TestCallOrder {
|
||||
getCallSequence @0 (expected: UInt32) -> (n: UInt32);
|
||||
# First call returns 0, next returns 1, ...
|
||||
#
|
||||
# The input `expected` is ignored but useful for disambiguating debug logs.
|
||||
}
|
||||
|
||||
interface TestTailCallee {
|
||||
struct TailResult {
|
||||
i @0 :UInt32;
|
||||
t @1 :Text;
|
||||
c @2 :TestCallOrder;
|
||||
}
|
||||
|
||||
foo @0 (i :Int32, t :Text) -> TailResult;
|
||||
}
|
||||
|
||||
interface TestTailCaller {
|
||||
foo @0 (i :Int32, callee :TestTailCallee) -> TestTailCallee.TailResult;
|
||||
}
|
||||
|
||||
interface TestHandle {}
|
||||
|
||||
interface TestMoreStuff extends(TestCallOrder) {
|
||||
# Catch-all type that contains lots of testing methods.
|
||||
|
||||
callFoo @0 (cap :TestInterface) -> (s: Text);
|
||||
# Call `cap.foo()`, check the result, and return "bar".
|
||||
|
||||
callFooWhenResolved @1 (cap :TestInterface) -> (s: Text);
|
||||
# Like callFoo but waits for `cap` to resolve first.
|
||||
|
||||
neverReturn @2 (cap :TestInterface) -> (capCopy :TestInterface);
|
||||
# Doesn't return. You should cancel it.
|
||||
|
||||
hold @3 (cap :TestInterface) -> ();
|
||||
# Returns immediately but holds on to the capability.
|
||||
|
||||
callHeld @4 () -> (s: Text);
|
||||
# Calls the capability previously held using `hold` (and keeps holding it).
|
||||
|
||||
getHeld @5 () -> (cap :TestInterface);
|
||||
# Returns the capability previously held using `hold` (and keeps holding it).
|
||||
|
||||
echo @6 (cap :TestCallOrder) -> (cap :TestCallOrder);
|
||||
# Just returns the input cap.
|
||||
|
||||
expectCancel @7 (cap :TestInterface) -> ();
|
||||
# evalLater()-loops forever, holding `cap`. Must be canceled.
|
||||
|
||||
methodWithDefaults @8 (a :Text, b :UInt32 = 123, c :Text = "foo") -> (d :Text, e :Text = "bar");
|
||||
|
||||
getHandle @9 () -> (handle :TestHandle);
|
||||
# Get a new handle. Tests have an out-of-band way to check the current number of live handles, so
|
||||
# this can be used to test garbage collection.
|
||||
}
|
||||
|
||||
interface TestKeywordMethods {
|
||||
delete @0 ();
|
||||
class @1 ();
|
||||
void @2 ();
|
||||
return @3 ();
|
||||
}
|
||||
|
||||
struct TestSturdyRef {
|
||||
hostId @0 :TestSturdyRefHostId;
|
||||
objectId @1 :AnyPointer;
|
||||
}
|
||||
|
||||
struct TestSturdyRefHostId {
|
||||
host @0 :Text;
|
||||
}
|
||||
|
||||
struct TestSturdyRefObjectId {
|
||||
tag @0 :Tag;
|
||||
enum Tag {
|
||||
testInterface @0;
|
||||
testExtends @1;
|
||||
testPipeline @2;
|
||||
testTailCallee @3;
|
||||
testTailCaller @4;
|
||||
testMoreStuff @5;
|
||||
}
|
||||
}
|
||||
|
||||
struct TestProvisionId {}
|
||||
struct TestRecipientId {}
|
||||
struct TestThirdPartyCapId {}
|
||||
struct TestJoinResult {}
|
||||
|
||||
struct TestNameAnnotation $Cxx.name("RenamedStruct") {
|
||||
union {
|
||||
badFieldName @0 :Bool $Cxx.name("goodFieldName");
|
||||
bar @1 :Int8;
|
||||
}
|
||||
|
||||
enum BadlyNamedEnum $Cxx.name("RenamedEnum") {
|
||||
foo @0;
|
||||
bar @1;
|
||||
baz @2 $Cxx.name("qux");
|
||||
}
|
||||
|
||||
anotherBadFieldName @2 :BadlyNamedEnum $Cxx.name("anotherGoodFieldName");
|
||||
|
||||
struct NestedStruct $Cxx.name("RenamedNestedStruct") {
|
||||
badNestedFieldName @0 :Bool $Cxx.name("goodNestedFieldName");
|
||||
anotherBadNestedFieldName @1 :NestedStruct $Cxx.name("anotherGoodNestedFieldName");
|
||||
|
||||
enum DeeplyNestedEnum $Cxx.name("RenamedDeeplyNestedEnum") {
|
||||
quux @0;
|
||||
corge @1;
|
||||
grault @2 $Cxx.name("garply");
|
||||
}
|
||||
}
|
||||
|
||||
badlyNamedUnion :union $Cxx.name("renamedUnion") {
|
||||
badlyNamedGroup :group $Cxx.name("renamedGroup") {
|
||||
foo @3 :Void;
|
||||
bar @4 :Void;
|
||||
}
|
||||
baz @5 :NestedStruct $Cxx.name("qux");
|
||||
}
|
||||
}
|
||||
|
||||
interface TestNameAnnotationInterface $Cxx.name("RenamedInterface") {
|
||||
badlyNamedMethod @0 (badlyNamedParam :UInt8 $Cxx.name("renamedParam")) $Cxx.name("renamedMethod");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue