nvim-treesitter/tests/query/highlights/gleam/assert.gleam

14 lines
394 B
Gleam
Raw Normal View History

2022-02-12 17:58:14 -08:00
pub fn main() {
assert Ok(i) = parse_int("123")
// <- exception
// ^^ constructor
2022-02-12 17:58:14 -08:00
// ^ punctuation.bracket
// ^ variable
// ^ punctuation.bracket
// ^ operator
// ^^^^^^^^^ function.call
2022-02-12 17:58:14 -08:00
// ^ punctuation.bracket
// ^^^^^ string
2022-02-12 17:58:14 -08:00
// ^ punctuation.bracket
}