diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-09-28 18:08:23 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-09-28 18:08:23 -0700 |
| commit | 90b8db84a48ca9ea1311abd202a546a4f697f4e6 (patch) | |
| tree | dd331880e943c11db8a7f388d0f5f509e30e154e /grammars | |
| parent | 699e7c8b9869fa9737a3c61ef9bcc599751fb88b (diff) | |
Moved */+ back to prefix, and dropped ?
Diffstat (limited to 'grammars')
| -rw-r--r-- | grammars/bpeg.bpeg | 26 | ||||
| -rw-r--r-- | grammars/builtins.bpeg | 40 | ||||
| -rw-r--r-- | grammars/html.bpeg | 12 | ||||
| -rw-r--r-- | grammars/utf8-id.bpeg | 2 |
4 files changed, 37 insertions, 43 deletions
diff --git a/grammars/bpeg.bpeg b/grammars/bpeg.bpeg index 0c43c0e..288ceee 100644 --- a/grammars/bpeg.bpeg +++ b/grammars/bpeg.bpeg @@ -1,43 +1,37 @@ # This is a file defining the BPEG grammar using BPEG syntax -Grammar: __ 0+(Def [__`;])%__ __ ($$ / @!={... => "Could not parse this code"}) +Grammar: __ *(Def [__`;])%__ __ ($$ / @!={... => "Could not parse this code"}) Def: @name=id _ `: __ ( @definition=extended-pat / $$ @!={=>"No definition for rule"} / @!={...>(`;/id_`:/$) => "Invalid definition: @0"}) # This is used for command line arguments: -String-pattern: 0+(`\ (escape-sequence / pat [`;]) / .) +String-pattern: *(`\ (escape-sequence / pat [`;]) / .) -pat: simple-pat !(__("!="/"=="/`*/`+/`?)) / suffixed-pat +pat: simple-pat !(__("!="/"==")) / suffixed-pat simple-pat: Upto-and / Dot / String / Char-range / Char / Escape-range / Escape / No / Nodent / Repeat / Optional / After / Before / Capture / Replace / Ref / parens suffixed-pat: ( Eq-pat / Not-eq-pat - / Star-pat - / Plus-pat - / Question-pat ) Eq-pat: @first=pat__"=="__@second=pat Not-eq-pat: @first=pat__"!="__@second=pat -Star-pat: pat __ `* @min={=>"0"} @max="" [__`%__@sep=pat] -Plus-pat: pat __ `+ @min={=>"1"} @max="" [__`%__@sep=pat] -Question-pat: pat __ `? Dot: `. !`. String: ( - `" @s=0+(Escape / !`".) (`" / @!={=> "Expected closing quote here"}) - / `' @s=0+(Escape / !`'.) (`' / @!={=> "Expected closing quote here"}) + `" @s=*(Escape / !`".) (`" / @!={=> "Expected closing quote here"}) + / `' @s=*(Escape / !`'.) (`' / @!={=> "Expected closing quote here"}) ) Char-range: `` @low=. `- (@high=. / @!={=> "Expected a second character to form a character range"}) Char: `` (@s=. / @!={=> "Expected a character following the '`'"}) Escape-range: `\ @low=escape-sequence `- @high=escape-sequence Escape: `\ (@s=escape-sequence / $ @!={=>"Backslashes are used for escape sequences, not splitting lines"} - / @!={. 0+(Abc/`0-9) => "Invalid escape sequence: '@0'"} + / @!={. *(Abc/`0-9) => "Invalid escape sequence: '@0'"} ) escape-sequence: ( `n/`t/`r/`e/`b/`a/`v @@ -68,17 +62,17 @@ Otherwise: 2+@(Chain/pat)%(__`/__) extended-pat: Otherwise / Chain / pat # Special-symbol rules: -_: 0+(` / \t) -__: 0+(` / \t / \r / \n / comment) +_: *(` / \t) +__: *(` / \t / \r / \n / comment) $$: !$. $: !. ^^: !<$. ^: !<. -id: "^^" / "^" / "__" / "_" / "$$" / "$" / (`a-z/`A-Z) 0+(`a-z/`A-Z/`0-9/`-) +id: "^^" / "^" / "__" / "_" / "$$" / "$" / (`a-z/`A-Z) *(`a-z/`A-Z/`0-9/`-) line-comment: `# .. $ -block-comment: "#(" 0+(block-comment / !")#" .) ")#" +block-comment: "#(" *(block-comment / !")#" .) ")#" # Note: comments are undefined by default in regular BPEG comment: block-comment / line-comment diff --git a/grammars/builtins.bpeg b/grammars/builtins.bpeg index c05b4c7..be380d3 100644 --- a/grammars/builtins.bpeg +++ b/grammars/builtins.bpeg @@ -16,21 +16,21 @@ replace-all: ( (include-binary-files / is-text-file) define-highlights add-filename - 0+(...(>pattern hl-replacement)) ... + *(...(>pattern hl-replacement)) ... ) find-all: ( (include-binary-files / is-text-file) define-highlights add-filename - 0+ (!..pattern {..\n=>}) - 1+ (>..pattern add-line-number 1+(..hl-pattern) ..\n / {..\n=>}) + *(!..pattern {..\n=>}) + +(>..pattern add-line-number +(..hl-pattern) ..\n / {..\n=>}) [{!<\n => "\n"}] ) only-matches: ( (include-binary-files / is-text-file) define-highlights add-filename - 1+{...@hl-pattern =>'@1\n'} + +{...@hl-pattern =>'@1\n'} ) add-filename: [print-filenames (is-tty {=>"\033[33;1;4m@&:\033[0m\n"} / {=>"@&:\n"})] add-line-number: [print-line-numbers (is-tty {=>"\033[2m@#\033[5G|\033[0m "} / {=>"@#| "})] @@ -41,21 +41,21 @@ define-highlights: highlight @hl-start={=>"\033[31;1m"} @hl-end={=>"\033[0m"} / # Helper definitions (commonly used) #( url: ( - "file://" 1+(`/ 0+url-char) + "file://" +(`/ *url-char) / "mailto:" email - / ("https"/"http"/"ftp") "://" [1+url-char [`: 1+url-char] `@] (ipv4/ipv6/domain) [`: int] [url-path] + / ("https"/"http"/"ftp") "://" [+url-char [`: +url-char] `@] (ipv4/ipv6/domain) [`: int] [url-path] ) -url-path: 1+(`/ 0+url-char) [`? 1+(1+url-char`=1+url-char] +url-path: +(`/ *url-char) [`? +(+url-char`=+url-char] ipv4: 4 int % `. ipv6: 8 (4 Hex) % `: -domain: 1+(Abc/digit/`-)%`. +domain: +(Abc/digit/`-)%`. url-char: Abc/digit/`$/`-/`_/`./`+/`!/`*/`'/`(/`)/`,/`% url: @(https?|ftp)://(-\.)?([^\s/?\.#-]+\.?)+(/[^\s]*)?$@iS )# -indent: \n|1+(\t/' ') +indent: \n|+(\t/' ') dedent: $ !(\n|) -indented-block: |` ..$ 0+(\n|..$) +indented-block: |` ..$ *(\n|..$) utf8-codepoint: ( \x00-x7f / \xc0-xdf 1\x80-xbf @@ -64,18 +64,18 @@ utf8-codepoint: ( ) crlf: \r\n cr: \r -anglebraces: `< 0+(anglebraces / !`>$.) `> -brackets: `[ 0+(brackets / !`]$.) `] -braces: `{ 0+(braces / !`}$.) `} -parens: `( 0+(parens / !`)$.) `) -id: !<(`a-z/`A-Z/`_/`0-9) (`a-z/`A-Z/`_) 0+(`a-z/`A-Z/`_/`0-9) +anglebraces: `< *(anglebraces / !`>$.) `> +brackets: `[ *(brackets / !`]$.) `] +braces: `{ *(braces / !`}$.) `} +parens: `( *(parens / !`)$.) `) +id: !<(`a-z/`A-Z/`_/`0-9) (`a-z/`A-Z/`_) *(`a-z/`A-Z/`_/`0-9) id-char: `a-z/`A-Z/`_/`0-9 -word: !<(`a-z/`A-Z/`_/`0-9) 1+(`a-z/`A-Z) !>(`0-9/`_) +word: !<(`a-z/`A-Z/`_/`0-9) +(`a-z/`A-Z) !>(`0-9/`_) HEX: `0-9/`A-F Hex: `0-9/`a-f/`A-F hex: `0-9/`a-f -number: 1+`0-9 [`. 0+`0-9] / `. 1+`0-9 -int: 1+`0-9 +number: +`0-9 [`. *`0-9] / `. +`0-9 +int: +`0-9 digit: `0-9 Abc: `a-z/`A-Z ABC: `A-Z @@ -94,5 +94,5 @@ $$: !$. $: !. ^^: !<$. ^: !<. -__: 0+(` /\t/\n/\r/comment) -_: 0+(` /\t) +__: *(` /\t/\n/\r/comment) +_: *(` /\t) diff --git a/grammars/html.bpeg b/grammars/html.bpeg index 5dd93cd..cea19c1 100644 --- a/grammars/html.bpeg +++ b/grammars/html.bpeg @@ -1,5 +1,5 @@ # HTML grammar -HTML: __ [doctype __] 0+html-element%__ __ +HTML: __ [doctype __] *html-element%__ __ doctype: "<!DOCTYPE" ..`> @@ -11,16 +11,16 @@ html-element: ( void-element: `< @tag=(id==match-tag) __attributes__ [`/] __ `> -template-element: `< @tag=(id==match-tag) __`> __ >match-body @body=0+(!`<$. / comment / html-element / !("</"tag__`>)$.) ("</"tag__`>) +template-element: `< @tag=(id==match-tag) __`> __ >match-body @body=*(!`<$. / comment / html-element / !("</"tag__`>)$.) ("</"tag__`>) raw-element: `< @tag=(id==match-tag) __attributes__ `> >match-body @body=.. ("</"tag__`>) -normal-element: `< @tag=(id==match-tag) __attributes__ `> >match-body @body=0+(!`<$. / comment / html-element / !("</"tag__`>)$.) "</"tag__`> +normal-element: `< @tag=(id==match-tag) __attributes__ `> >match-body @body=*(!`<$. / comment / html-element / !("</"tag__`>)$.) "</"tag__`> comment: "<!--" ..."-->" -attributes: 0+attribute%__ -attribute: (1+id%`:)__`=__ (id / `" ..`" / `' ..`') -attribute: (1+id%`:)__`=__ (id / `" ..`" / `' ..`') +attributes: *attribute%__ +attribute: (+id%`:)__`=__ (id / `" ..`" / `' ..`') +attribute: (+id%`:)__`=__ (id / `" ..`" / `' ..`') match-tag: id match-body: '' diff --git a/grammars/utf8-id.bpeg b/grammars/utf8-id.bpeg index a1c0bc4..26e98ba 100644 --- a/grammars/utf8-id.bpeg +++ b/grammars/utf8-id.bpeg @@ -1,5 +1,5 @@ # Definitions of UTF8-compliant identifiers -utf8-id: utf8-id-start 0+utf8-id-cont +utf8-id: utf8-id-start *utf8-id-cont utf8-id-start: `A-Z / `a-z / !\x00-x7F ( \xc2 (\xaa / \xb5 / \xba) |
