moonscript/spec/factory.moon
2016-11-23 00:04:31 -08:00

14 lines
146 B
Plaintext

-- ast factory
ref = (name="val") ->
{"ref", name}
str = (contents="dogzone", delim='"') ->
{"string", delim, contents}
{
:ref
:str
}