Home | History | Annotate | Download | only in ast

Lines Matching refs:Bar

20 	{[]string{"// foo  bar  "}, "foo  bar\n"},
21 {[]string{"// foo", "// bar"}, "foo\nbar\n"},
22 {[]string{"// foo", "//", "//", "//", "// bar"}, "foo\n\nbar\n"},
23 {[]string{"// foo", "/* bar */"}, "foo\n bar\n"},
30 {[]string{"/* Foo Bar */"}, " Foo Bar\n"},
31 {[]string{"/* Foo*/", "/* Bar*/"}, " Foo\n Bar\n"},
32 {[]string{"/* Foo*/", "/**/", "/**/", "/**/", "// Bar"}, " Foo\n\nBar\n"},
33 {[]string{"/* Foo*/", "/*\n*/", "//", "/*\n*/", "// Bar"}, " Foo\n\nBar\n"},
34 {[]string{"/* Foo*/", "// Bar"}, " Foo\nBar\n"},
35 {[]string{"/* Foo\n Bar*/"}, " Foo\n Bar\n"},