aboutsummaryrefslogtreecommitdiff
path: root/lib/ast.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2019-10-10 01:36:58 +0800
committerGitHub <noreply@github.com>2019-10-10 01:36:58 +0800
commita0d4b648bbd4bdd0432091fb150d432b9c477367 (patch)
tree14a4f304cd26510bdbbc6df14333fcfc7f56d3e1 /lib/ast.js
parent6db880e16db4ce5354cea75907b96a9ba37d4363 (diff)
downloadtracifyjs-a0d4b648bbd4bdd0432091fb150d432b9c477367.tar.gz
tracifyjs-a0d4b648bbd4bdd0432091fb150d432b9c477367.zip
remove extraneous property (#3459)
fixes #3455
Diffstat (limited to 'lib/ast.js')
-rw-r--r--lib/ast.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ast.js b/lib/ast.js
index 03850d4f..6205cc77 100644
--- a/lib/ast.js
+++ b/lib/ast.js
@@ -837,11 +837,10 @@ var AST_String = DEFNODE("String", "value quote", {
}
}, AST_Constant);
-var AST_Number = DEFNODE("Number", "value literal", {
+var AST_Number = DEFNODE("Number", "value", {
$documentation: "A number literal",
$propdoc: {
value: "[number] the numeric value",
- literal: "[string] numeric value as string (optional)"
}
}, AST_Constant);