diff options
author | Araq <rumpf_a@web.de> | 2012-07-18 17:21:10 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-18 17:21:10 +0200 |
commit | e68830a952473682fdb41808e2791e8ab8d1f2f6 (patch) | |
tree | f3c3ad0a9b8fdc7be5b443f7ff45a375f8159396 /doc/grammar.txt | |
parent | 83deb233eec4b80b37146024df64a11a437da386 (diff) | |
download | Nim-e68830a952473682fdb41808e2791e8ab8d1f2f6.tar.gz |
improvements for 'bind', fixes #166
Diffstat (limited to 'doc/grammar.txt')
-rwxr-xr-x | doc/grammar.txt | 2 |
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 ('.}' | '}') |