Home | History | Annotate | Download | only in ast

Lines Matching defs:BlockStmt

262 		Body *BlockStmt // function body
637 // A BlockStmt node represents a braced statement list.
638 BlockStmt struct {
649 Body *BlockStmt
666 Body *BlockStmt // CaseClauses only
674 Body *BlockStmt // CaseClauses only
688 Body *BlockStmt // CommClauses only
697 Body *BlockStmt
707 Body *BlockStmt
725 func (s *BlockStmt) Pos() token.Pos { return s.Lbrace }
764 func (s *BlockStmt) End() token.Pos { return s.Rbrace + 1 }
804 func (*BlockStmt) stmtNode() {}
930 Body *BlockStmt // function body; or nil for external (non-Go) function