Skip to content

Commit

Permalink
Remove importall as a keyword
Browse files Browse the repository at this point in the history
This keyword hasn't existed since before Julia 1.0
JuliaLang/julia#22789
  • Loading branch information
c42f committed Dec 29, 2021
1 parent 5878c3d commit 398d48e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/lexer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import ..Tokens: AbstractToken, Token, RawToken, Kind, TokenError, UNICODE_OPS,

import ..Tokens: FUNCTION, ABSTRACT, IDENTIFIER, BAREMODULE, BEGIN, BREAK, CATCH, CONST, CONTINUE,
DO, ELSE, ELSEIF, END, EXPORT, FALSE, FINALLY, FOR, FUNCTION, GLOBAL, LET, LOCAL, IF,
IMPORT, IMPORTALL, MACRO, MODULE, OUTER, QUOTE, RETURN, TRUE, TRY, TYPE, USING, WHILE, ISA, IN,
IMPORT, MACRO, MODULE, OUTER, QUOTE, RETURN, TRUE, TRY, TYPE, USING, WHILE, ISA, IN,
MUTABLE, PRIMITIVE, STRUCT, WHERE


Expand Down Expand Up @@ -1090,7 +1090,6 @@ Tokens.FUNCTION,
Tokens.GLOBAL,
Tokens.IF,
Tokens.IMPORT,
Tokens.IMPORTALL,
Tokens.LET,
Tokens.LOCAL,
Tokens.MACRO,
Expand Down
1 change: 0 additions & 1 deletion src/token_kinds.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
GLOBAL,
IF,
IMPORT,
IMPORTALL,
LET,
LOCAL,
MACRO,
Expand Down

0 comments on commit 398d48e

Please sign in to comment.