From 1b744ab8834f2ff73e72e1c4d362043a0cec23a8 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 6 Jan 2019 14:45:36 -0600 Subject: [PATCH] DOCS: keep all tokens together. --- docsite/site/content/reference/grammar.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/docsite/site/content/reference/grammar.md b/docsite/site/content/reference/grammar.md index 16076c2..b4f7e82 100644 --- a/docsite/site/content/reference/grammar.md +++ b/docsite/site/content/reference/grammar.md @@ -57,18 +57,12 @@ null_keyword: "NULL" ; in_keyword: "in" ; escaped: "\", VISIBLE_CHAR ; str: quot, { escaped | UTF8_CHAR }, quot ; -``` - -Whitespace is discarded before parsing the rest of the AST. - -## Simple Scalar Values - -``` -str: float: (DIGIT+, dot, { DIGIT }) | (dot, DIGIT+) ; number: ["-" | "+"](float | integer) ; ``` +Whitespace is discarded before parsing the rest of the AST. + ## Complex Values ### Lists