aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--src/lib.rs4
2 files changed, 3 insertions, 2 deletions
diff --git a/TODO b/TODO
index 1801fbc..0b988ca 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,7 @@
PONG
- complete plain structs
- type system
+ - get/set ordering
- structs in structs
- foreign function
- constructors? ({.x = }-ish)
diff --git a/src/lib.rs b/src/lib.rs
index c190918..081dd70 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -284,7 +284,7 @@ a() <=> 4
field_get: "blob A { a: int }
a := A()
a.a = 2
- //TODO a.a <=> 2
+ a.a <=> 2
2 <=> a.a",
multiple_fields: "blob A {
a: int
@@ -293,7 +293,7 @@ a() <=> 4
a := A()
a.a = 2
a.b = 3
- //TODO a.a + a.b <=> 5
+ a.a + a.b <=> 5
5 <=> a.a + a.b"
);