Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/wake/parser.wx
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,9 @@ Class Parser
Select Toke
Case "to"
ident=Parse()
Case "*","/","+","-","&","|","~~"
Case "*","/","mod","+","-","shl","shr","&","|","~~"
ident=Parse()
Case "*=","/=","+=","-=","&=","|=","~~="
Case "*=","/=","mod=","+=","-=","shl=","shr=","&=","|=","~~="
ident=Parse()
Case "<",">","<=",">=","=","<>","<=>"
ident=Parse()
Expand All @@ -506,7 +506,7 @@ Class Parser
Parse( "]" )
If CParse( "=" ) ident="[]=" Else ident="[]"
Default
Error( "Operator must be one of: * / + - & | ~~ [] < > <= >= = <> <=>" )
Error( "Operator must be one of: * / Mod + - & Shl Shr | ~~ [] < > <= >= = <> <=>" )
End

Case "method"
Expand Down
2 changes: 1 addition & 1 deletion src/wake/wx.wx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Using std.collections
Using libc

'Make sure to rebuildall after changing this!
Const WAKE_VERSION:= "1.1.0"
Const WAKE_VERSION:= "1.1.1"

'For 'emergency patch' versions, 'b', 'c' etc...
Const WAKE_VERSION_EXT:=""
Expand Down
Loading