2022-08-26 15:51:43 +01:00
|
|
|
const std = @import("std");
|
|
|
|
const zls = @import("zls");
|
2022-09-29 04:12:34 +01:00
|
|
|
const builtin = @import("builtin");
|
2022-08-26 15:51:43 +01:00
|
|
|
|
2022-09-18 23:47:06 +01:00
|
|
|
const Context = @import("../context.zig").Context;
|
2023-03-12 16:31:55 +00:00
|
|
|
const ErrorBuilder = @import("../ErrorBuilder.zig");
|
2022-08-26 15:51:43 +01:00
|
|
|
|
2022-12-27 06:47:57 +00:00
|
|
|
const types = zls.types;
|
2023-03-12 16:31:55 +00:00
|
|
|
const offsets = zls.offsets;
|
2022-08-26 15:51:43 +01:00
|
|
|
|
|
|
|
const allocator: std.mem.Allocator = std.testing.allocator;
|
|
|
|
|
|
|
|
test "semantic tokens - empty" {
|
|
|
|
try testSemanticTokens("", &.{});
|
|
|
|
}
|
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - comment" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\// hello world
|
|
|
|
, &.{
|
|
|
|
.{ "// hello world", .comment, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\//! hello world
|
|
|
|
\\
|
|
|
|
, &.{
|
|
|
|
.{ "//! hello world", .comment, .{ .documentation = true } },
|
2023-03-31 19:48:47 +01:00
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\//! first line
|
|
|
|
\\//! second line
|
|
|
|
\\
|
|
|
|
, &.{
|
|
|
|
.{ "//! first line", .comment, .{ .documentation = true } },
|
|
|
|
.{ "//! second line", .comment, .{ .documentation = true } },
|
2023-03-12 16:31:55 +00:00
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\/// hello world
|
|
|
|
\\const a;
|
|
|
|
, &.{
|
|
|
|
.{ "/// hello world", .comment, .{ .documentation = true } },
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "a", .variable, .{ .declaration = true } },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - string literals" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = "";
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "\"\"", .string, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const beta = "hello";
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "beta", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "\"hello\"", .string, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const gamma =
|
|
|
|
\\ \\hello
|
|
|
|
\\ \\world
|
|
|
|
\\ \\
|
|
|
|
\\;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "gamma", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
// TODO remove the newline
|
|
|
|
.{ "\\\\hello\n", .string, .{} },
|
|
|
|
.{ "\\\\world\n", .string, .{} },
|
|
|
|
.{ "\\\\\n", .string, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - char literals" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = ' ';
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "' '", .string, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - var decl" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = 3;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\threadlocal var alpha = 3;
|
|
|
|
, &.{
|
|
|
|
.{ "threadlocal", .keyword, .{} },
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\extern var alpha: u32;
|
|
|
|
, &.{
|
|
|
|
.{ "extern", .keyword, .{} },
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\pub extern var alpha = 3;
|
|
|
|
, &.{
|
|
|
|
.{ "pub", .keyword, .{} },
|
|
|
|
.{ "extern", .keyword, .{} },
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - local var decl" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = {
|
|
|
|
\\ comptime var beta: u32 = 3;
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "comptime", .keyword, .{} },
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "beta", .variable, .{ .declaration = true } },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - escaped identifier" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var @"@" = 3;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "@\"@\"", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - operators" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = 3 + 3;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "+", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = 3 orelse 3;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "orelse", .keyword, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = true and false;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "true", .keywordLiteral, .{} },
|
|
|
|
.{ "and", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - field access" {
|
|
|
|
// this will make sure that the std module can be resolved
|
2022-12-04 02:35:51 +00:00
|
|
|
try testSemanticTokens(
|
|
|
|
\\const std = @import("std");
|
2023-03-12 16:31:55 +00:00
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "std", .type, .{ .namespace = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "@import", .builtin, .{} },
|
|
|
|
.{ "\"std\"", .string, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const std = @import("std");
|
|
|
|
\\const Ast = std.zig.Ast;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "std", .type, .{ .namespace = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "@import", .builtin, .{} },
|
|
|
|
.{ "\"std\"", .string, .{} },
|
2022-12-02 20:14:58 +00:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Ast", .type, .{ .@"struct" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "std", .type, .{ .namespace = true } },
|
|
|
|
.{ "zig", .type, .{ .namespace = true } },
|
|
|
|
.{ "Ast", .type, .{ .@"struct" = true } },
|
|
|
|
});
|
2022-08-26 15:51:43 +01:00
|
|
|
}
|
|
|
|
|
2023-03-31 19:49:25 +01:00
|
|
|
test "semantic tokens - call" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn foo() void {}
|
|
|
|
\\const alpha = foo();
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "foo", .function, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const ns = struct {
|
|
|
|
\\ fn foo() void {}
|
|
|
|
\\};
|
|
|
|
\\const alpha = ns.foo();
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "ns", .type, .{ .namespace = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "struct", .keyword, .{} },
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "ns", .type, .{ .namespace = true } },
|
|
|
|
.{ "foo", .function, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - catch" {
|
2022-12-23 03:27:38 +00:00
|
|
|
try testSemanticTokens(
|
2023-03-12 16:31:55 +00:00
|
|
|
\\var alpha = a catch b;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "a", .variable, .{} },
|
|
|
|
.{ "catch", .keyword, .{} },
|
|
|
|
.{ "b", .variable, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = a catch |err| b;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "a", .variable, .{} },
|
|
|
|
.{ "catch", .keyword, .{} },
|
|
|
|
.{ "err", .variable, .{ .declaration = true } },
|
|
|
|
.{ "b", .variable, .{} },
|
|
|
|
});
|
|
|
|
}
|
2022-12-23 03:27:38 +00:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - slicing" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = a[0..1];
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "a", .variable, .{} },
|
|
|
|
.{ "0", .number, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = a[0..1: 2];
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "a", .variable, .{} },
|
|
|
|
.{ "0", .number, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
});
|
2022-12-23 03:27:38 +00:00
|
|
|
}
|
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - enum literal" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = .beta;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "beta", .enumMember, .{} },
|
|
|
|
});
|
2023-01-26 21:04:49 +00:00
|
|
|
}
|
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - error literal" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = error.OutOfMemory;
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "error", .keyword, .{} },
|
|
|
|
.{ "OutOfMemory", .errorTag, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - array literal" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = [_]u32{ 1, 2 };
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = [_:3]u32{};
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - struct literal" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = .{};
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = .{1,2};
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\var alpha = Unknown{1,2};
|
|
|
|
, &.{
|
|
|
|
.{ "var", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "Unknown", .variable, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - optional types" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = ?u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "?", .operator, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - array types" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = [1]u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = [1:0]u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "0", .number, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - pointer types" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = *u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "*", .operator, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = *allowzero u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "*", .operator, .{} },
|
|
|
|
.{ "allowzero", .keyword, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = [:0]const u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "0", .number, .{} },
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = *align(1:2:3) u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "*", .operator, .{} },
|
|
|
|
.{ "align", .keyword, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - anyframe type" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = anyframe->u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .variable, .{ .declaration = true } }, // TODO this should be .type
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "anyframe", .keyword, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - error union types" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const alpha = u32!u32;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "alpha", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - struct" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = struct {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .namespace = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "struct", .keyword, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = packed struct(u32) {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .namespace = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "packed", .keyword, .{} },
|
|
|
|
.{ "struct", .keyword, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = struct {
|
|
|
|
\\ alpha: u32,
|
|
|
|
\\ beta: void,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"struct" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "struct", .keyword, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "alpha", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "u32", .type, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "beta", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "void", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = struct {
|
|
|
|
\\ alpha: u32 = 3,
|
|
|
|
\\ comptime beta: void = {},
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"struct" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "struct", .keyword, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "alpha", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "comptime", .keyword, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "beta", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "void", .type, .{} },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const T = u32;
|
|
|
|
\\const Foo = struct {
|
|
|
|
\\ u32,
|
|
|
|
\\ T align(4),
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "T", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"struct" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "struct", .keyword, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "T", .type, .{} },
|
|
|
|
.{ "align", .keyword, .{} },
|
|
|
|
.{ "4", .number, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - union" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = union {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"union" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "union", .keyword, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = packed union(enum) {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"union" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "packed", .keyword, .{} },
|
|
|
|
.{ "union", .keyword, .{} },
|
|
|
|
.{ "enum", .keyword, .{} },
|
|
|
|
});
|
|
|
|
if (true) return error.SkipZigTest; // TODO
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = union(E) {
|
|
|
|
\\ alpha,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"union" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "union", .keyword, .{} },
|
|
|
|
.{ "E", .variable, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "alpha", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = union(E) {
|
|
|
|
\\ alpha,
|
|
|
|
\\ beta: void,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"union" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "union", .keyword, .{} },
|
|
|
|
.{ "E", .variable, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "alpha", .property, .{} },
|
|
|
|
.{ "beta", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "void", .keyword, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = union(E) {
|
|
|
|
\\ alpha: void align(2),
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"union" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "union", .keyword, .{} },
|
|
|
|
.{ "E", .variable, .{} },
|
2023-03-31 16:38:17 +01:00
|
|
|
.{ "alpha", .property, .{} },
|
2023-03-12 16:31:55 +00:00
|
|
|
.{ "void", .keyword, .{} },
|
|
|
|
.{ "align", .keyword, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - enum" {
|
|
|
|
if (true) return error.SkipZigTest; // TODO
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = enum {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"enum" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "enum", .keyword, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = enum {
|
|
|
|
\\ alpha,
|
|
|
|
\\ beta,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"enum" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "enum", .keyword, .{} },
|
|
|
|
.{ "alpha", .enumMember, .{} },
|
|
|
|
.{ "beta", .enumMember, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = enum(u4) {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"enum" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "enum", .keyword, .{} },
|
|
|
|
.{ "u4", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - error set" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = error {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "error", .keyword, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = error {
|
|
|
|
\\ OutOfMemory,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "error", .keyword, .{} },
|
|
|
|
.{ "OutOfMemory", .errorTag, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - opaque" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const Foo = opaque {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "Foo", .type, .{ .@"opaque" = true, .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "opaque", .keyword, .{} },
|
|
|
|
});
|
|
|
|
}
|
2022-08-26 15:51:43 +01:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - function" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn foo() void {}
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\pub fn foo(alpha: u32) void {}
|
|
|
|
, &.{
|
|
|
|
.{ "pub", .keyword, .{} },
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "alpha", .parameter, .{ .declaration = true } },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\extern fn foo() align(4) callconv(.C) void;
|
|
|
|
, &.{
|
|
|
|
.{ "extern", .keyword, .{} },
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
// TODO .{ "align", .keyword, .{} },
|
|
|
|
.{ "4", .number, .{} },
|
|
|
|
// TODO .{ "callconv", .keyword, .{} },
|
|
|
|
.{ "C", .enumMember, .{} },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn foo(comptime T: type) void {}
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true, .generic = true } },
|
|
|
|
.{ "comptime", .keyword, .{} },
|
|
|
|
.{ "T", .parameter, .{ .declaration = true } },
|
|
|
|
.{ "type", .type, .{} },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
2022-08-26 15:51:43 +01:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - builtin fuctions" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = @as(type, u32);
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "@as", .builtin, .{} },
|
|
|
|
.{ "type", .type, .{} },
|
|
|
|
.{ "u32", .type, .{} },
|
|
|
|
});
|
|
|
|
}
|
2022-08-26 15:51:43 +01:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - block" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = blk: {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "blk", .label, .{ .declaration = true } },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = blk: {
|
|
|
|
\\ break :blk 5;
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "blk", .label, .{ .declaration = true } },
|
|
|
|
.{ "break", .keyword, .{} },
|
|
|
|
.{ "blk", .label, .{} },
|
|
|
|
.{ "5", .number, .{} },
|
|
|
|
});
|
|
|
|
}
|
2022-08-26 15:51:43 +01:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - if" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = if (false) {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "if", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = if (false) 1 else 2;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "if", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
.{ "1", .number, .{} },
|
|
|
|
.{ "else", .keyword, .{} },
|
|
|
|
.{ "2", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = if (false) |val| val else |err| err;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "if", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
.{ "val", .variable, .{ .declaration = true } },
|
|
|
|
.{ "val", .variable, .{} },
|
|
|
|
.{ "else", .keyword, .{} },
|
|
|
|
.{ "err", .variable, .{ .declaration = true } },
|
|
|
|
.{ "err", .variable, .{} },
|
|
|
|
});
|
2023-03-30 13:00:09 +01:00
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = if (null) |*value| {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "if", .keyword, .{} },
|
|
|
|
.{ "null", .keywordLiteral, .{} },
|
|
|
|
.{ "value", .variable, .{ .declaration = true } },
|
|
|
|
});
|
2023-03-12 16:31:55 +00:00
|
|
|
}
|
2023-02-11 19:19:37 +00:00
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
test "semantic tokens - while" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = while (false) {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "while", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = while (false) |*val| {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "while", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
.{ "val", .variable, .{ .declaration = true } },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = while (false) false else true;
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "while", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
.{ "else", .keyword, .{} },
|
|
|
|
.{ "true", .keywordLiteral, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - for" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = for ("") {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "for", .keyword, .{} },
|
|
|
|
.{ "\"\"", .string, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = for ("") |val| {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "for", .keyword, .{} },
|
|
|
|
.{ "\"\"", .string, .{} },
|
|
|
|
.{ "val", .variable, .{ .declaration = true } },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - switch" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = switch (3) {};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "switch", .keyword, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = switch (3) {
|
|
|
|
\\ 0 => true,
|
|
|
|
\\ else => false,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "switch", .keyword, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "0", .number, .{} },
|
|
|
|
.{ "true", .keywordLiteral, .{} },
|
|
|
|
.{ "else", .keyword, .{} },
|
|
|
|
.{ "false", .keywordLiteral, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\const foo = switch (3) {
|
|
|
|
\\ inline else => |*val| val,
|
|
|
|
\\};
|
|
|
|
, &.{
|
|
|
|
.{ "const", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{ .declaration = true } },
|
|
|
|
.{ "=", .operator, .{} },
|
|
|
|
.{ "switch", .keyword, .{} },
|
|
|
|
.{ "3", .number, .{} },
|
|
|
|
.{ "inline", .keyword, .{} },
|
|
|
|
.{ "else", .keyword, .{} },
|
|
|
|
.{ "val", .variable, .{ .declaration = true } },
|
|
|
|
.{ "val", .variable, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - defer" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn foo() void {
|
|
|
|
\\ defer {};
|
|
|
|
\\}
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
.{ "defer", .keyword, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - errdefer" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn foo() void {
|
|
|
|
\\ errdefer {};
|
|
|
|
\\}
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
.{ "errdefer", .keyword, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn foo() void {
|
|
|
|
\\ errdefer |err| {};
|
|
|
|
\\}
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "foo", .function, .{ .declaration = true } },
|
|
|
|
.{ "void", .type, .{} },
|
|
|
|
.{ "errdefer", .keyword, .{} },
|
|
|
|
.{ "err", .variable, .{ .declaration = true } },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - test decl" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\test "test inside a test" {}
|
|
|
|
, &.{
|
|
|
|
.{ "test", .keyword, .{} },
|
|
|
|
.{ "\"test inside a test\"", .string, .{} },
|
|
|
|
});
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\test foo {}
|
|
|
|
, &.{
|
|
|
|
.{ "test", .keyword, .{} },
|
|
|
|
.{ "foo", .variable, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test "semantic tokens - assembly" {
|
|
|
|
try testSemanticTokens(
|
|
|
|
\\fn syscall1(number: usize, arg1: usize) usize {
|
|
|
|
\\ return asm volatile ("syscall"
|
|
|
|
\\ : [ret] "={rax}" (-> usize),
|
|
|
|
\\ : [number] "{rax}" (number),
|
|
|
|
\\ [arg1] "{rdi}" (arg1),
|
|
|
|
\\ : "rcx", "r11"
|
|
|
|
\\ );
|
|
|
|
\\}
|
|
|
|
, &.{
|
|
|
|
.{ "fn", .keyword, .{} },
|
|
|
|
.{ "syscall1", .function, .{ .declaration = true } },
|
|
|
|
.{ "number", .parameter, .{ .declaration = true } },
|
|
|
|
.{ "usize", .type, .{} },
|
|
|
|
.{ "arg1", .parameter, .{ .declaration = true } },
|
|
|
|
.{ "usize", .type, .{} },
|
|
|
|
.{ "usize", .type, .{} },
|
|
|
|
.{ "return", .keyword, .{} },
|
|
|
|
.{ "asm", .keyword, .{} },
|
|
|
|
.{ "volatile", .keyword, .{} },
|
|
|
|
.{ "\"syscall\"", .string, .{} },
|
|
|
|
.{ "ret", .variable, .{} },
|
|
|
|
.{ "\"={rax}\"", .string, .{} },
|
|
|
|
.{ "usize", .type, .{} },
|
|
|
|
.{ "number", .variable, .{} },
|
|
|
|
.{ "\"{rax}\"", .string, .{} },
|
|
|
|
.{ "number", .parameter, .{} },
|
|
|
|
.{ "arg1", .variable, .{} },
|
|
|
|
.{ "\"{rdi}\"", .string, .{} },
|
|
|
|
.{ "arg1", .parameter, .{} },
|
|
|
|
.{ "\"rcx\"", .string, .{} },
|
|
|
|
.{ "\"r11\"", .string, .{} },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const TokenData = struct {
|
|
|
|
[]const u8,
|
|
|
|
zls.semantic_tokens.TokenType,
|
|
|
|
zls.semantic_tokens.TokenModifiers,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn testSemanticTokens(source: [:0]const u8, expected_tokens: []const TokenData) !void {
|
|
|
|
var ctx = try Context.init();
|
|
|
|
defer ctx.deinit();
|
|
|
|
|
|
|
|
const uri = try ctx.addDocument(source);
|
|
|
|
|
|
|
|
const response = try ctx.requestGetResponse(
|
|
|
|
types.SemanticTokens,
|
2022-09-29 04:12:34 +01:00
|
|
|
"textDocument/semanticTokens/full",
|
2023-03-12 16:31:55 +00:00
|
|
|
types.SemanticTokensParams{ .textDocument = .{ .uri = uri } },
|
2022-09-29 04:12:34 +01:00
|
|
|
);
|
2023-03-12 16:31:55 +00:00
|
|
|
|
|
|
|
const actual = response.result.data;
|
|
|
|
try std.testing.expect(actual.len % 5 == 0); // every token is represented by 5 integers
|
|
|
|
|
2023-03-21 00:33:56 +00:00
|
|
|
var error_builder = ErrorBuilder.init(allocator);
|
2023-03-12 16:31:55 +00:00
|
|
|
defer error_builder.deinit();
|
|
|
|
errdefer error_builder.writeDebug();
|
|
|
|
|
2023-03-21 00:33:56 +00:00
|
|
|
try error_builder.addFile(uri, source);
|
|
|
|
|
2023-03-12 16:31:55 +00:00
|
|
|
var token_it = std.mem.window(u32, actual, 5, 5);
|
|
|
|
var position: types.Position = .{ .line = 0, .character = 0 };
|
|
|
|
var last_token_end: usize = 0;
|
|
|
|
|
|
|
|
for (expected_tokens) |expected_token| {
|
|
|
|
const token_data = token_it.next() orelse {
|
2023-03-21 00:33:56 +00:00
|
|
|
try error_builder.msgAtIndex("expected a `{s}` token here", uri, last_token_end, .err, .{expected_token.@"0"});
|
2023-03-12 16:31:55 +00:00
|
|
|
return error.ExpectedToken;
|
|
|
|
};
|
|
|
|
|
|
|
|
const delta_line = token_data[0];
|
|
|
|
const delta_start = token_data[1];
|
|
|
|
const length = token_data[2];
|
|
|
|
const token_type = @intToEnum(zls.semantic_tokens.TokenType, token_data[3]);
|
|
|
|
const token_modifiers = @bitCast(zls.semantic_tokens.TokenModifiers, @intCast(u16, token_data[4]));
|
|
|
|
|
|
|
|
position.line += delta_line;
|
|
|
|
position.character = delta_start + if (delta_line == 0) position.character else 0;
|
|
|
|
|
|
|
|
const source_index = offsets.positionToIndex(source, position, .@"utf-8");
|
|
|
|
const token_loc: offsets.Loc = .{
|
|
|
|
.start = source_index,
|
|
|
|
.end = source_index + length,
|
|
|
|
};
|
|
|
|
last_token_end = token_loc.end;
|
|
|
|
|
|
|
|
const token_source = offsets.locToSlice(source, token_loc);
|
|
|
|
|
|
|
|
const expected_token_source = expected_token.@"0";
|
|
|
|
const expected_token_type = expected_token.@"1";
|
|
|
|
const expected_token_modifiers = expected_token.@"2";
|
|
|
|
|
|
|
|
if (!std.mem.eql(u8, expected_token_source, token_source)) {
|
2023-03-21 00:33:56 +00:00
|
|
|
try error_builder.msgAtLoc("expected `{s}` as the next token but got `{s}` here", uri, token_loc, .err, .{ expected_token_source, token_source });
|
2023-03-12 16:31:55 +00:00
|
|
|
return error.UnexpectedTokenContent;
|
|
|
|
} else if (expected_token_type != token_type) {
|
2023-03-21 00:33:56 +00:00
|
|
|
try error_builder.msgAtLoc("expected token type `{s}` but got `{s}`", uri, token_loc, .err, .{ @tagName(expected_token_type), @tagName(token_type) });
|
2023-03-12 16:31:55 +00:00
|
|
|
return error.UnexpectedTokenType;
|
|
|
|
} else if (!std.meta.eql(expected_token_modifiers, token_modifiers)) {
|
2023-03-21 00:33:56 +00:00
|
|
|
try error_builder.msgAtLoc("expected token modifiers `{}` but got `{}`", uri, token_loc, .err, .{ expected_token_modifiers, token_modifiers });
|
2023-03-12 16:31:55 +00:00
|
|
|
return error.UnexpectedTokenModifiers;
|
|
|
|
}
|
|
|
|
}
|
2022-08-26 15:51:43 +01:00
|
|
|
}
|