Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tree-sitter grammar: support characters #5323

Merged
merged 2 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions backend/testfiles/execution/stdlib/parser.dark
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,11 @@ module TextToTextRoundtripping =
("\"hello\"" |> roundtripCliScript) = "\"hello\""
("\"hello\\tworld\"" |> roundtripCliScript) = "\"hello\\tworld\""

// char literals
("'a'" |> roundtripCliScript) = "'a'"
("'\\n'" |> roundtripCliScript) = "'\\n'"
("'\t'" |> roundtripCliScript) = "'\t'"

// variables and let bindings
("assumedlyAVariableName" |> roundtripCliScript) = "assumedlyAVariableName"
// TODO: this is ugly
Expand Down
34 changes: 34 additions & 0 deletions packages/darklang/languageTools/parser.dark
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,39 @@ module Darklang =
(WrittenTypes.Unparseable { source = node })
|> Stdlib.Result.Result.Error

let parseCharLiteral
(node: ParsedNode)
: Stdlib.Result.Result<WrittenTypes.Expr, WrittenTypes.Unparseable> =
if node.typ == "char_literal" then
let openQuoteNode =
(findNodeByFieldName node "symbol_open_single_quote")
|> Stdlib.Option.toResult
"No symbol_open_single_quote node found in char_literal"

let charNode =
match findNodeByFieldName node "content" with
| Some charPart ->
Stdlib.Option.Option.Some((charPart.sourceRange, charPart.text))
| None -> Stdlib.Option.Option.None

let closeQuoteNode =
(findNodeByFieldName node "symbol_close_single_quote")
|> Stdlib.Option.toResult
"No symbol_close_single_quote node found in char_literal"

match openQuoteNode, closeQuoteNode with
| Ok openQuoteNode, Ok closeQuoteNode ->
(WrittenTypes.Expr.EChar(
node.sourceRange,
charNode,
openQuoteNode.sourceRange,
closeQuoteNode.sourceRange
))
|> Stdlib.Result.Result.Ok

| _ ->
(WrittenTypes.Unparseable { source = node })
|> Stdlib.Result.Result.Error

let parseLetExpr
(node: ParsedNode)
Expand Down Expand Up @@ -804,6 +837,7 @@ module Darklang =
| "uint128_literal" -> parseIntLiteral node
| "float_literal" -> parseFloatLiteral node
| "string_literal" -> parseStringLiteral node
| "char_literal" -> parseCharLiteral node

// assigning and accessing variables
| "let_expression" -> parseLetExpr node
Expand Down
12 changes: 12 additions & 0 deletions packages/darklang/languageTools/semanticTokens.dark
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,18 @@ module Darklang =
[ makeToken symbolCloseQuote TokenType.Symbol ] ]
|> Stdlib.List.flatten

// 'a'
| EChar(range, _contentsMaybe, symbolOpenQuote, symbolCloseQuote) ->
[ // '
[ makeToken symbolOpenQuote TokenType.Symbol ]

// a
[ makeToken range TokenType.String ]

// '
[ makeToken symbolCloseQuote TokenType.Symbol ] ]
|> Stdlib.List.flatten

// let x = 2
// x + 1
| ELet(range, lp, expr, body, keywordLet, symbolEquals) ->
Expand Down
5 changes: 5 additions & 0 deletions packages/darklang/languageTools/writtenTypes.dark
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ module Darklang =
contents: Stdlib.Option.Option<SourceRange * String> *
symbolOpenQuote: SourceRange *
symbolCloseQuote: SourceRange
| EChar of
SourceRange *
contents: Stdlib.Option.Option<SourceRange * String> *
symbolOpenQuote: SourceRange *
symbolCloseQuote: SourceRange

| ELet of
SourceRange *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ module Darklang =
gid (),
[ ProgramTypes.StringSegment.StringText s ]
)
| EChar(_, c, _, _) ->
match c with
| None -> ProgramTypes.Expr.EChar(gid (), "")
| Some((_, c)) -> ProgramTypes.Expr.EChar(gid (), c)

// declaring and accessing variables
| ELet(_, pat, rhs, body, _, _) ->
Expand Down
2 changes: 1 addition & 1 deletion packages/darklang/prettyPrinter/programTypes.dark
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ module Darklang =
$"{signPart}{whole}.{remainderPart}"


| EChar(_id, c) -> "\"" ++ c ++ "\""
| EChar(_id, c) -> "'" ++ c ++ "'"

| EString(_id, segments) ->
match segments with
Expand Down
32 changes: 28 additions & 4 deletions tree-sitter-darklang/grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ module.exports = grammar({
$.uint128_literal,
$.float_literal,
$.string_literal,
$.char_literal,

$.let_expression,
$.variable_identifier,
Expand Down Expand Up @@ -129,6 +130,7 @@ module.exports = grammar({

//
// Strings
// TODO: maybe add support for multiline strings (""")
string_literal: $ =>
choice(
seq(
Expand All @@ -146,12 +148,29 @@ module.exports = grammar({
choice(
// higher precedence than escape sequences
token.immediate(prec(1, /[^\\"\n]+/)),
$.string_escape_sequence,
$.escape_sequence,
OceanOak marked this conversation as resolved.
Show resolved Hide resolved
),
),
string_escape_sequence: _ =>
token.immediate(seq("\\", /(\"|\\|\/|b|f|n|r|t|u)/)),

//
// Characters
char_literal: $ =>
seq(
field("symbol_open_single_quote", alias("'", $.symbol)),
field("content", $.character),
field("symbol_close_single_quote", alias("'", $.symbol)),
),
character: $ =>
choice(
// higher precedence than escape sequences
token.immediate(prec(1, /[^'\\\n]/)),
$.escape_sequence,
),

escape_sequence: _ => token.immediate(seq("\\", /(\"|\\|\/|b|f|n|r|t|u)/)),

//
// Infix operations
infix_operation: $ =>
// given `1 + 2 * 3`, this will parse as `1 + (2 * 3)`
choice(
Expand Down Expand Up @@ -214,6 +233,8 @@ module.exports = grammar({
),
),

//
// Integers
//CLEANUP: we are using .NET suffixes for integers (e.g. `1L` for Int64) temporarily until we remove the old parser.
int8_literal: $ =>
seq(field("digits", $.digits), field("suffix", alias("y", $.symbol))),
Expand Down Expand Up @@ -260,11 +281,14 @@ module.exports = grammar({
field("suffix", alias("Z", $.symbol)),
),

float_literal: $ => /[+-]?[0-9]+\.[0-9]+/,
digits: $ => choice($.positive_digits, $.negative_digits),
negative_digits: $ => /-\d+/,
positive_digits: $ => /\d+/,

//
// Floats
float_literal: $ => /[+-]?[0-9]+\.[0-9]+/,

//
// Common
type_reference: $ => choice($.builtin_type, $.qualified_type_name),
Expand Down
75 changes: 69 additions & 6 deletions tree-sitter-darklang/src/grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,10 @@
"type": "SYMBOL",
"name": "string_literal"
},
{
"type": "SYMBOL",
"name": "char_literal"
},
{
"type": "SYMBOL",
"name": "let_expression"
Expand Down Expand Up @@ -563,12 +567,71 @@
},
{
"type": "SYMBOL",
"name": "string_escape_sequence"
"name": "escape_sequence"
}
]
}
},
"string_escape_sequence": {
"char_literal": {
"type": "SEQ",
"members": [
{
"type": "FIELD",
"name": "symbol_open_single_quote",
"content": {
"type": "ALIAS",
"content": {
"type": "STRING",
"value": "'"
},
"named": true,
"value": "symbol"
}
},
{
"type": "FIELD",
"name": "content",
"content": {
"type": "SYMBOL",
"name": "character"
}
},
{
"type": "FIELD",
"name": "symbol_close_single_quote",
"content": {
"type": "ALIAS",
"content": {
"type": "STRING",
"value": "'"
},
"named": true,
"value": "symbol"
}
}
]
},
"character": {
"type": "CHOICE",
"members": [
{
"type": "IMMEDIATE_TOKEN",
"content": {
"type": "PREC",
"value": 1,
"content": {
"type": "PATTERN",
"value": "[^'\\\\\\n]"
}
}
},
{
"type": "SYMBOL",
"name": "escape_sequence"
}
]
},
"escape_sequence": {
"type": "IMMEDIATE_TOKEN",
"content": {
"type": "SEQ",
Expand Down Expand Up @@ -1142,10 +1205,6 @@
}
]
},
"float_literal": {
"type": "PATTERN",
"value": "[+-]?[0-9]+\\.[0-9]+"
},
"digits": {
"type": "CHOICE",
"members": [
Expand All @@ -1167,6 +1226,10 @@
"type": "PATTERN",
"value": "\\d+"
},
"float_literal": {
"type": "PATTERN",
"value": "[+-]?[0-9]+\\.[0-9]+"
},
"type_reference": {
"type": "CHOICE",
"members": [
Expand Down
65 changes: 60 additions & 5 deletions tree-sitter-darklang/src/node-types.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,57 @@
"named": true,
"fields": {}
},
{
"type": "char_literal",
"named": true,
"fields": {
"content": {
"multiple": false,
"required": true,
"types": [
{
"type": "character",
"named": true
}
]
},
"symbol_close_single_quote": {
"multiple": false,
"required": true,
"types": [
{
"type": "symbol",
"named": true
}
]
},
"symbol_open_single_quote": {
"multiple": false,
"required": true,
"types": [
{
"type": "symbol",
"named": true
}
]
}
}
},
{
"type": "character",
"named": true,
"fields": {},
"children": {
"multiple": false,
"required": false,
"types": [
{
"type": "escape_sequence",
"named": true
}
]
}
},
{
"type": "digits",
"named": true,
Expand Down Expand Up @@ -40,6 +91,10 @@
"type": "bool_literal",
"named": true
},
{
"type": "char_literal",
"named": true
},
{
"type": "float_literal",
"named": true
Expand Down Expand Up @@ -658,7 +713,7 @@
"required": false,
"types": [
{
"type": "string_escape_sequence",
"type": "escape_sequence",
"named": true
}
]
Expand Down Expand Up @@ -909,6 +964,10 @@
"type": "\n",
"named": false
},
{
"type": "escape_sequence",
"named": true
},
{
"type": "float_literal",
"named": true
Expand All @@ -929,10 +988,6 @@
"type": "positive_digits",
"named": true
},
{
"type": "string_escape_sequence",
"named": true
},
{
"type": "symbol",
"named": true
Expand Down
Loading