mirror of
https://github.com/leafo/moonscript.git
synced 2024-12-08 01:54:24 +00:00
14 lines
146 B
Plaintext
14 lines
146 B
Plaintext
|
|
-- ast factory
|
|
|
|
ref = (name="val") ->
|
|
{"ref", name}
|
|
|
|
str = (contents="dogzone", delim='"') ->
|
|
{"string", delim, contents}
|
|
|
|
{
|
|
:ref
|
|
:str
|
|
}
|