• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# https://crbug.com/gn/141. 80 col ---------------------------------------------
2
3a =
4    [ "b" ]  # comment1
5
6a =
7    [ "b", "c" ]  # comment1b
8
9a =
10    b  # comment2
11
12a =
13    { b = 3 }  # comment3
14
15a =
16    { # comment4
17
18      b = 3 }  # comment5
19
20a =
21    { b = 3 # comment6
22    }
23
24if (true) {
25  if (true) {
26    if (true) {
27      something_longer_on_the_lhs =
28          [ "something that will exceed 80 col if dewrapped" ]  # comment7
29
30      something_longer_on_the_lhs = [ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ]  # comment8
31    }
32  }
33}
34