1# https://crbug.com/gn/141. 80 col --------------------------------------------- 2 3a = [ "b" ] # comment1 4 5a = [ 6 "b", 7 "c", 8] # comment1b 9 10a = b # comment2 11 12a = { 13 b = 3 14} # comment3 15 16a = { # comment4 17 b = 3 18} # 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 = 31 [ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ] # comment8 32 } 33 } 34} 35