EmptyDeclNode represents an empty declaration in protobuf source. These amount to extra semicolons, with no actual content preceding the semicolon.
| 112 | // These amount to extra semicolons, with no actual content preceding |
| 113 | // the semicolon. |
| 114 | type EmptyDeclNode struct { |
| 115 | compositeNode |
| 116 | Semicolon *RuneNode |
| 117 | } |
| 118 | |
| 119 | // NewEmptyDeclNode creates a new *EmptyDeclNode. The one argument must |
| 120 | // be non-nil. |
nothing calls this directly
no outgoing calls
no test coverage detected