summary refs log tree commit diff stats
path: root/doc/grammar.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-07-18 17:21:10 +0200
committerAraq <rumpf_a@web.de>2012-07-18 17:21:10 +0200
commite68830a952473682fdb41808e2791e8ab8d1f2f6 (patch)
treef3c3ad0a9b8fdc7be5b443f7ff45a375f8159396 /doc/grammar.txt
parent83deb233eec4b80b37146024df64a11a437da386 (diff)
downloadNim-e68830a952473682fdb41808e2791e8ab8d1f2f6.tar.gz
improvements for 'bind', fixes #166
Diffstat (limited to 'doc/grammar.txt')
-rwxr-xr-xdoc/grammar.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/grammar.txt b/doc/grammar.txt
index f378cd140..1e54d1116 100755
--- a/doc/grammar.txt
+++ b/doc/grammar.txt
@@ -137,7 +137,7 @@ staticStmt ::= 'static' ':' stmt
 filename ::= symbol | STR_LIT | RSTR_LIT | TRIPLESTR_LIT
 importStmt ::= 'import' filename (comma filename)*
 includeStmt ::= 'include' filename (comma filename)*
-bindStmt ::= 'bind' IDENT (comma IDENT)*
+bindStmt ::= 'bind' qualifiedIdent (comma qualifiedIdent)*
 fromStmt ::= 'from' filename 'import' symbol (comma symbol)*
 
 pragma ::= '{.' optInd (colonExpr [comma])* optPar ('.}' | '}')