platform_build_blueprint/parser
Jooyung Han 0cb1064428 Add newlines around list of structs
Since a struct(parser.Map) occupies multiple lines, adding newlines
around brackets([]) looks better even the list has only a single value.

  prop: [ {
    name: "foo",
  }],

vs

  prop: [
    {
      name: "foo",
    },
  ],

Bug: n/a
Test: go test ./parser
Change-Id: I1a574aa038a26235848b6c9b5b4f01a0ab2c8c00
2022-02-09 11:10:12 +09:00
..
ast.go Add support for maps in blueprint files. 2022-01-26 12:18:31 -05:00
modify.go Add Patch and PatchList for making textual changes 2018-04-10 16:50:39 -07:00
modify_test.go Add Patch and PatchList for making textual changes 2018-04-10 16:50:39 -07:00
parser.go Merge "Add support for maps in blueprint files." 2022-01-27 21:36:45 +00:00
parser_test.go Merge "Add support for maps in blueprint files." 2022-01-27 21:36:45 +00:00
printer.go Add newlines around list of structs 2022-02-09 11:10:12 +09:00
printer_test.go Add newlines around list of structs 2022-02-09 11:10:12 +09:00
sort.go Fix numericStringLess and add tests 2021-03-08 17:59:55 -08:00
sort_test.go Fix numericStringLess and add tests 2021-03-08 17:59:55 -08:00