Skip to content

Commit

Permalink
STY: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
klauer committed Dec 29, 2024
1 parent 21039f6 commit 22bb54a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blark/iec.lark
Original file line number Diff line number Diff line change
Expand Up @@ -836,12 +836,12 @@ end_of_statement_list_label: LABEL ":"

jmp_statement: _JMP LABEL ";"+

// ** Keyword section **
// ** Keyword section **
//
// All keywords defined here must be:
// * Named exactly as the IEC keyword in upper-case.
// * Prefixed with underscore to not be captured during the transformer stage.
// * Regular expressions with a suffix of 'i' for case insensitivity. (i.e., //i).
// * Regular expressions with a suffix of 'i' for case insensitivity. (i.e., //i).
// * Prefixed and suffixed with '\b', indicating word boundary handling. Without it,
// (b)lark may ignore whitespace much more than we want it to.
// * Kept in sorted order
Expand Down

0 comments on commit 22bb54a

Please sign in to comment.