Files
brolang/tree-sitter-brolang/test/highlight/intrinsics.bro
T

17 lines
294 B
Plaintext

hide helper func() void {}
# <- keyword
value uint :: 1
# ^^^^ type.builtin
main func() void {
_ = sizeof!(i32)
# ^^^^^^ function.builtin
# ^ operator
_ = sizeof(i32)
# ^^^^^^ function
_ = constcast!(memory)
# ^^^^^^^^^ function.builtin
# ^ operator
}