Commit 63090761 authored by Robert Griesemer's avatar Robert Griesemer

weekend snapshot

- fixed a minor bug
- some initial code to extract interface of a package

R=r
OCL=25866
CL=25866
parent 5e400ebf
......@@ -1016,7 +1016,7 @@ func (P *Printer) DoVarDecl(d *ast.VarDecl) {
}
func (P *Printer) DoFuncDecl(d *ast.FuncDecl) {
func (P *Printer) funcDecl(d *ast.FuncDecl, with_body bool) {
P.Token(d.Pos_, token.FUNC);
P.separator = blank;
if recv := d.Recv; recv != nil {
......@@ -1032,7 +1032,7 @@ func (P *Printer) DoFuncDecl(d *ast.FuncDecl) {
}
P.Expr(d.Ident);
P.Signature(d.Sig);
if d.Body != nil {
if with_body && d.Body != nil {
P.separator = blank;
P.Block(d.Body, true);
}
......@@ -1040,6 +1040,11 @@ func (P *Printer) DoFuncDecl(d *ast.FuncDecl) {
}
func (P *Printer) DoFuncDecl(d *ast.FuncDecl) {
P.funcDecl(d, true);
}
func (P *Printer) DoDeclList(d *ast.DeclList) {
if !*def || d.Tok == token.IMPORT || d.Tok == token.VAR {
P.Token(d.Pos, d.Tok);
......@@ -1073,6 +1078,20 @@ func (P *Printer) Decl(d ast.Decl) {
}
// ----------------------------------------------------------------------------
// Interface
func (P *Printer) Interface(p *ast.Program) {
for i := 0; i < len(p.Decls); i++ {
decl := p.Decls[i];
// TODO use type switch
if fun, is_fun := decl.(*ast.FuncDecl); is_fun {
P.funcDecl(fun, false);
}
}
}
// ----------------------------------------------------------------------------
// Program
......@@ -1110,7 +1129,8 @@ func Print(writer io.Write, html bool, prog *ast.Program) {
if P.html {
err := templ.Apply(text, "<!--", template.Substitution {
"PACKAGE-->" : func() { /* P.Expr(prog.Ident); */ },
"PACKAGE-->" : func() { P.Printf("%s", prog.Ident.Str); },
"INTERFACE-->" : func() { P.Interface(prog); },
"BODY-->" : func() { P.Program(prog); },
});
if err != nil {
......
<h1><!--PACKAGE--></h1>
<pre>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment