1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

forgot some semicolons

This commit is contained in:
Patrick Thomson 2019-10-17 00:10:31 -04:00
parent b5d6e7186f
commit b0752f0a96

View File

@ -3,12 +3,12 @@
#record { __name: name, __bases: bases, __dict: dict };
instance <- \class -> \prim -> \slots ->
#record { __class: class, __prim: prim, __slots: slots }
#record { __class: class, __prim: prim, __slots: slots };
object <- type "object" #unit #record{};
str <- type "str" object #record { }
str.__class.__new__ = \contents -> instance str contents #record{}
str <- type "str" object #record { };
str.__class.__new__ = \contents -> instance str contents #record{};
#record { type: type, object: object, string: string }
}