(file *ast.File)
| 408 | } |
| 409 | |
| 410 | func package_name(file *ast.File) string { |
| 411 | if file.Name != nil { |
| 412 | return file.Name.Name |
| 413 | } |
| 414 | return "" |
| 415 | } |
| 416 | |
| 417 | //------------------------------------------------------------------------- |
| 418 | // decl_cache |