mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2026-01-05 14:10:13 +03:00
Update float syntax rules and formatting (#756)
* Update float syntax rules and formatting * Add missing export_group annotation * Moved abstract from an annotation to a keyword * Add an example of the other type of string interpolation.
This commit is contained in:
25
src/formatter/snapshots/float_notation.gd
Normal file
25
src/formatter/snapshots/float_notation.gd
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# --- IN ---
|
||||||
|
func test():
|
||||||
|
# The following floating-point notations are all valid:
|
||||||
|
print(is_equal_approx(123., 123))
|
||||||
|
print(is_equal_approx(.123, 0.123))
|
||||||
|
print(is_equal_approx(.123e4, 1230))
|
||||||
|
print(is_equal_approx(123.e4, 1.23e6))
|
||||||
|
print(is_equal_approx(.123e-1, 0.0123))
|
||||||
|
print(is_equal_approx(123.e-1, 12.3))
|
||||||
|
|
||||||
|
# Same as above, but with negative numbers.
|
||||||
|
print(is_equal_approx(-123., -123))
|
||||||
|
print(is_equal_approx(-.123, -0.123))
|
||||||
|
print(is_equal_approx(-.123e4, -1230))
|
||||||
|
print(is_equal_approx(-123.e4, -1.23e6))
|
||||||
|
print(is_equal_approx(-.123e-1, -0.0123))
|
||||||
|
print(is_equal_approx(-123.e-1, -12.3))
|
||||||
|
|
||||||
|
# Same as above, but with explicit positive numbers (which is redundant).
|
||||||
|
print(is_equal_approx(+123., +123))
|
||||||
|
print(is_equal_approx(+.123, +0.123))
|
||||||
|
print(is_equal_approx(+.123e4, +1230))
|
||||||
|
print(is_equal_approx(+123.e4, +1.23e6))
|
||||||
|
print(is_equal_approx(+.123e-1, +0.0123))
|
||||||
|
print(is_equal_approx(+123.e-1, +12.3))
|
||||||
@@ -12,5 +12,6 @@ func dump() -> String:
|
|||||||
preview_texture: %s,
|
preview_texture: %s,
|
||||||
explorer_layer: %s,
|
explorer_layer: %s,
|
||||||
connections: %s,
|
connections: %s,
|
||||||
|
test {test},
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -74,6 +74,10 @@ function parse_token(token: Token) {
|
|||||||
if (token.scopes.includes("meta.function.parameters.gdscript")) {
|
if (token.scopes.includes("meta.function.parameters.gdscript")) {
|
||||||
token.param = true;
|
token.param = true;
|
||||||
}
|
}
|
||||||
|
if (token.scopes[0].includes("constant.numeric")) {
|
||||||
|
token.type = "literal";
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (token.value.match(/[A-Za-z_]\w+/)) {
|
if (token.value.match(/[A-Za-z_]\w+/)) {
|
||||||
token.identifier = true;
|
token.identifier = true;
|
||||||
}
|
}
|
||||||
@@ -144,7 +148,7 @@ function between(tokens: Token[], current: number, options: FormatterOptions) {
|
|||||||
|
|
||||||
if (nextToken.param) {
|
if (nextToken.param) {
|
||||||
if (options.denseFunctionParameters) {
|
if (options.denseFunctionParameters) {
|
||||||
if (prev === "-") {
|
if (prev === "-" || prev === "+") {
|
||||||
if (tokens[current - 2]?.value === "=") return "";
|
if (tokens[current - 2]?.value === "=") return "";
|
||||||
if (["keyword", "symbol"].includes(tokens[current - 2]?.type)) {
|
if (["keyword", "symbol"].includes(tokens[current - 2]?.type)) {
|
||||||
return "";
|
return "";
|
||||||
@@ -181,8 +185,9 @@ function between(tokens: Token[], current: number, options: FormatterOptions) {
|
|||||||
}
|
}
|
||||||
if (prev === "@") return "";
|
if (prev === "@") return "";
|
||||||
|
|
||||||
if (prev === "-") {
|
if (prev === "-" || prev === "+") {
|
||||||
if (nextToken.identifier) return " ";
|
if (nextToken.identifier) return " ";
|
||||||
|
if (next === "(") return " ";
|
||||||
if (current === 1) return "";
|
if (current === 1) return "";
|
||||||
if (["keyword", "symbol"].includes(tokens[current - 2]?.type)) {
|
if (["keyword", "symbol"].includes(tokens[current - 2]?.type)) {
|
||||||
return "";
|
return "";
|
||||||
@@ -304,7 +309,7 @@ export function format_document(document: TextDocument, _options?: FormatterOpti
|
|||||||
const tokens: Token[] = [];
|
const tokens: Token[] = [];
|
||||||
for (const t of lineTokens.tokens) {
|
for (const t of lineTokens.tokens) {
|
||||||
const token: Token = {
|
const token: Token = {
|
||||||
scopes: t.scopes,
|
scopes: [t.scopes.join(" "), ...t.scopes],
|
||||||
original: line.text.slice(t.startIndex, t.endIndex),
|
original: line.text.slice(t.startIndex, t.endIndex),
|
||||||
value: line.text.slice(t.startIndex, t.endIndex).trim(),
|
value: line.text.slice(t.startIndex, t.endIndex).trim(),
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -245,7 +245,7 @@
|
|||||||
"captures": { "1": { "name": "keyword.control.gdscript" } }
|
"captures": { "1": { "name": "keyword.control.gdscript" } }
|
||||||
},
|
},
|
||||||
"keywords": {
|
"keywords": {
|
||||||
"match": "\\b(?:class|class_name|is|onready|tool|static|export|as|void|enum|assert|breakpoint|sync|remote|master|puppet|slave|remotesync|mastersync|puppetsync|trait|namespace)\\b",
|
"match": "\\b(?:class|class_name|abstract|is|onready|tool|static|export|as|void|enum|assert|breakpoint|sync|remote|master|puppet|slave|remotesync|mastersync|puppetsync|trait|namespace)\\b",
|
||||||
"name": "keyword.language.gdscript"
|
"name": "keyword.language.gdscript"
|
||||||
},
|
},
|
||||||
"letter": {
|
"letter": {
|
||||||
@@ -263,22 +263,17 @@
|
|||||||
"name": "constant.numeric.integer.hexadecimal.gdscript"
|
"name": "constant.numeric.integer.hexadecimal.gdscript"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"match": "[-]?([0-9][0-9_]+\\.[0-9_]*(e[\\-\\+]?[0-9_]+)?)",
|
"match": "\\.[0-9][0-9_]*([eE][+-]?[0-9_]+)?",
|
||||||
"name": "constant.numeric.float.gdscript"
|
"name": "constant.numeric.float.gdscript"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"match": "[-]?(\\.[0-9][0-9_]*(e[\\-\\+]?[0-9_]+)?)",
|
"match": "([0-9][0-9_]*)?\\.[0-9_]*([eE][+-]?[0-9_]+)?",
|
||||||
"name": "constant.numeric.float.gdscript"
|
"name": "constant.numeric.float.gdscript"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"match": "[-]?([0-9][0-9_]*e[\\-\\+]?\\[0-9_])",
|
"match": "[0-9][0-9_]*[eE][+-]?[0-9_]+",
|
||||||
"name": "constant.numeric.float.gdscript"
|
"name": "constant.numeric.float.gdscript"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "constant.numeric.float.gdscript",
|
|
||||||
"match": "(?x)\n (?<! \\w)(?:\n (?:\n \\.[0-9](?: _?[0-9] )*\n |\n [0-9](?: _?[0-9] )* \\. [0-9](?: _?[0-9] )*\n |\n [0-9](?: _?[0-9] )* \\.\n ) (?: [eE][+-]?[0-9](?: _?[0-9] )* )?\n |\n [0-9](?: _?[0-9] )* (?: [eE][+-]?[0-9](?: _?[0-9] )* )\n )([jJ])?\\b\n",
|
|
||||||
"captures": { "1": { "name": "storage.type.imaginary.number.gdscript" } }
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"match": "[-]?[0-9][0-9_]*",
|
"match": "[-]?[0-9][0-9_]*",
|
||||||
"name": "constant.numeric.integer.gdscript"
|
"name": "constant.numeric.integer.gdscript"
|
||||||
@@ -435,7 +430,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"annotations": {
|
"annotations": {
|
||||||
"match": "(@)(export|export_color_no_alpha|export_custom|export_dir|export_enum|export_exp_easing|export_file|export_flags|export_flags_2d_navigation|export_flags_2d_physics|export_flags_2d_render|export_flags_3d_navigation|export_flags_3d_physics|export_flags_3d_render|export_global_dir|export_global_file|export_multiline|export_node_path|export_placeholder|export_range|export_storage|icon|onready|rpc|tool|warning_ignore|abstract|static_unload)\\b",
|
"match": "(@)(export|export_group|export_color_no_alpha|export_custom|export_dir|export_enum|export_exp_easing|export_file|export_flags|export_flags_2d_navigation|export_flags_2d_physics|export_flags_2d_render|export_flags_3d_navigation|export_flags_3d_physics|export_flags_3d_render|export_global_dir|export_global_file|export_multiline|export_node_path|export_placeholder|export_range|export_storage|icon|onready|rpc|tool|warning_ignore|static_unload)\\b",
|
||||||
"captures": {
|
"captures": {
|
||||||
"1": { "name": "entity.name.function.decorator.gdscript" },
|
"1": { "name": "entity.name.function.decorator.gdscript" },
|
||||||
"2": { "name": "entity.name.function.decorator.gdscript" }
|
"2": { "name": "entity.name.function.decorator.gdscript" }
|
||||||
|
|||||||
Reference in New Issue
Block a user