1
0
mirror of https://github.com/golang/go synced 2024-11-20 09:54:45 -07:00
go/usr/gri/pretty/ast.txt

40 lines
367 B
Plaintext
Raw Normal View History

//string =
// "%s";
pointer =
*;
array =
*;
//token.Token =
// "token<%d>"; // this could be a Go-installed formatter
ast
;
Comments =
"comments\n";
Ident =
Value;
Program =
"package " Name "\n\n" {Decls "\n\n"};
GenDecl =
Doc
Tok " (\n"
")\n";
FuncType =
"(" ")";
BlockStmt =
"{\n" "}\n";
FuncDecl =
"func " Name Type [" " Body];
Decl =
^;