Returns the node name and position in a single call.
| 154 | |
| 155 | // Returns the node name and position in a single call. |
| 156 | inline string ParseNodeName(const string& name, int* position) { |
| 157 | return string(ParseNodeNameAsStringPiece(name, position)); |
| 158 | } |
| 159 | |
| 160 | // Return the node name corresponding to 'name' if name is valid, or the empty |
| 161 | // string otherwise. |
no test coverage detected