fix => and =>? support
This commit is contained in:
parent
4246b7a44c
commit
9c9856d9ee
4 changed files with 2503 additions and 2475 deletions
21
grammar.js
21
grammar.js
|
@ -2,7 +2,7 @@ module.exports = grammar({
|
||||||
name: 'spl',
|
name: 'spl',
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
source_file: $ => seq(repeat($._statement), optional($._unspaced_statement)),
|
source_file: $ => seq(repeat($._statement)),
|
||||||
_unspaced_statement: $ => seq(
|
_unspaced_statement: $ => seq(
|
||||||
choice(
|
choice(
|
||||||
$.string,
|
$.string,
|
||||||
|
@ -42,16 +42,15 @@ module.exports = grammar({
|
||||||
'}',
|
'}',
|
||||||
),
|
),
|
||||||
identifier: $ => /[^ \n\r\t<>:;&{}"'\[\]]+/,
|
identifier: $ => /[^ \n\r\t<>:;&{}"'\[\]]+/,
|
||||||
call: $ => seq(
|
call: $ => choice(
|
||||||
choice(
|
seq(
|
||||||
seq(
|
optional($.call),
|
||||||
optional($.call),
|
':',
|
||||||
':',
|
optional(repeat('&')),
|
||||||
$.identifier,
|
|
||||||
),
|
|
||||||
$.operation,
|
|
||||||
$.identifier,
|
$.identifier,
|
||||||
),
|
),
|
||||||
|
$.operation,
|
||||||
|
$.identifier,
|
||||||
),
|
),
|
||||||
number: $ => /\d+(\.\d+)?/,
|
number: $ => /\d+(\.\d+)?/,
|
||||||
string: $ => seq('"', repeat(choice(/\\./, /./)), '"'),
|
string: $ => seq('"', repeat(choice(/\\./, /./)), '"'),
|
||||||
|
@ -62,7 +61,7 @@ module.exports = grammar({
|
||||||
';',
|
';',
|
||||||
),
|
),
|
||||||
array: $ => seq('[', $._spacing, optional(repeat($._statement)), ']'),
|
array: $ => seq('[', $._spacing, optional(repeat($._statement)), ']'),
|
||||||
operation: $ => choice(/[+\-*\/%&]/, "=>", "=>?"),
|
operation: $ => choice(/[+\-*\/%&]/, "=>?", "=>"),
|
||||||
variable: $ => choice(
|
variable: $ => choice(
|
||||||
seq('def', $._spacing, $.identifier),
|
seq('def', $._spacing, $.identifier),
|
||||||
seq('=', $.identifier),
|
seq('=', $.identifier),
|
||||||
|
@ -79,7 +78,7 @@ module.exports = grammar({
|
||||||
)),
|
)),
|
||||||
'}',
|
'}',
|
||||||
),
|
),
|
||||||
_spacing: $ => /[ \n\r\t]+/,
|
_spacing: $ => /[ \n\r\t\(\)]+/,
|
||||||
if: $ => seq(
|
if: $ => seq(
|
||||||
'if', $._spacing,
|
'if', $._spacing,
|
||||||
'{', $._spacing,
|
'{', $._spacing,
|
||||||
|
|
|
@ -3,11 +3,16 @@
|
||||||
"name": "spl",
|
"name": "spl",
|
||||||
"rules": {
|
"rules": {
|
||||||
"source_file": {
|
"source_file": {
|
||||||
"type": "REPEAT",
|
"type": "SEQ",
|
||||||
"content": {
|
"members": [
|
||||||
"type": "SYMBOL",
|
{
|
||||||
"name": "_statement"
|
"type": "REPEAT",
|
||||||
}
|
"content": {
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_statement"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"_unspaced_statement": {
|
"_unspaced_statement": {
|
||||||
"type": "SEQ",
|
"type": "SEQ",
|
||||||
|
@ -170,6 +175,10 @@
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "identifier"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_spacing"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "STRING",
|
"type": "STRING",
|
||||||
"value": "!"
|
"value": "!"
|
||||||
|
@ -263,48 +272,58 @@
|
||||||
},
|
},
|
||||||
"identifier": {
|
"identifier": {
|
||||||
"type": "PATTERN",
|
"type": "PATTERN",
|
||||||
"value": "[^ \\n\\r\\t<>:;&{}\"']+"
|
"value": "[^ \\n\\r\\t<>:;&{}\"'\\[\\]]+"
|
||||||
},
|
},
|
||||||
"call": {
|
"call": {
|
||||||
"type": "SEQ",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "CHOICE",
|
"type": "SEQ",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "CHOICE",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
|
||||||
"type": "CHOICE",
|
|
||||||
"members": [
|
|
||||||
{
|
|
||||||
"type": "SYMBOL",
|
|
||||||
"name": "call"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "BLANK"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": ":"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "call"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "STRING",
|
||||||
"name": "operation"
|
"value": ":"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "CHOICE",
|
||||||
|
"members": [
|
||||||
|
{
|
||||||
|
"type": "REPEAT",
|
||||||
|
"content": {
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "&"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SYMBOL",
|
"type": "SYMBOL",
|
||||||
"name": "identifier"
|
"name": "identifier"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "operation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "identifier"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -413,11 +432,19 @@
|
||||||
"name": "_spacing"
|
"name": "_spacing"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "REPEAT",
|
"type": "CHOICE",
|
||||||
"content": {
|
"members": [
|
||||||
"type": "SYMBOL",
|
{
|
||||||
"name": "_statement"
|
"type": "REPEAT",
|
||||||
}
|
"content": {
|
||||||
|
"type": "SYMBOL",
|
||||||
|
"name": "_statement"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "BLANK"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "STRING",
|
"type": "STRING",
|
||||||
|
@ -432,6 +459,10 @@
|
||||||
"type": "PATTERN",
|
"type": "PATTERN",
|
||||||
"value": "[+\\-*\\/%&]"
|
"value": "[+\\-*\\/%&]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "STRING",
|
||||||
|
"value": "=>?"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "STRING",
|
"type": "STRING",
|
||||||
"value": "=>"
|
"value": "=>"
|
||||||
|
@ -582,7 +613,7 @@
|
||||||
},
|
},
|
||||||
"_spacing": {
|
"_spacing": {
|
||||||
"type": "PATTERN",
|
"type": "PATTERN",
|
||||||
"value": "[ \\n\\r\\t]+"
|
"value": "[ \\n\\r\\t\\(\\)]+"
|
||||||
},
|
},
|
||||||
"if": {
|
"if": {
|
||||||
"type": "SEQ",
|
"type": "SEQ",
|
||||||
|
|
|
@ -674,6 +674,10 @@
|
||||||
"type": "=>",
|
"type": "=>",
|
||||||
"named": false
|
"named": false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "=>?",
|
||||||
|
"named": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": ">",
|
"type": ">",
|
||||||
"named": false
|
"named": false
|
||||||
|
|
4854
src/parser.c
4854
src/parser.c
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue