1
0
forked from VimPlug/jedi

move file_input to top of file, as mentioned in 19acdd32b7

This commit is contained in:
Claude
2016-02-09 11:47:01 +01:00
parent 241abe9cf3
commit 3b0dcb3fcb

View File

@@ -15,8 +15,8 @@
# file_input is a module or sequence of commands read from an input file;
# eval_input is the input for the eval() functions.
# NB: compound_stmt in single_input is followed by extra NEWLINE!
single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
file_input: (NEWLINE | stmt)* ENDMARKER
single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
eval_input: testlist NEWLINE* ENDMARKER
decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE