icicle-lang / icicle-ambiata

A streaming query language.
BSD 3-Clause "New" or "Revised" License
57 stars 11 forks source link

TOML parser is broken #372

Open tranma opened 8 years ago

tranma commented 8 years ago

...in at least one way: This doesn't work:

[feature.foo]
  expression = """feature person
                  ~> filter state == "CA"
                  ~> newest state"""

But this does:

[feature.foo]
  expression = "feature person
                  ~> filter state == \"CA\"
                  ~> newest state"
tranma commented 8 years ago

@jystic you think this is all fixed?