aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/gleam/assert.gleam
blob: fd95304ac12a0d99170a52c9fcd48b724a89300b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub fn main() {
  assert Ok(i) == parse_int("123")
  // <- @keyword.exception
  //     ^^ @constructor
  //       ^ @punctuation.bracket
  //        ^ @variable
  //         ^ @punctuation.bracket
  //           ^ @operator
  //              ^^^^^^^^^ @function.call
  //                       ^ @punctuation.bracket
  //                        ^^^^^ @string
  //                             ^ @punctuation.bracket
}