| 1025 | } |
| 1026 | |
| 1027 | bool BfAstNode::IsFromParser(BfParser* parser) |
| 1028 | { |
| 1029 | if (parser == NULL) |
| 1030 | return false; |
| 1031 | if (IsTemporary()) |
| 1032 | return false; |
| 1033 | BfSourceData* sourceData = GetSourceData(); |
| 1034 | if (sourceData == NULL) |
| 1035 | return false; |
| 1036 | return parser == sourceData->ToParser(); |
| 1037 | } |
| 1038 | |
| 1039 | String BfAstNode::ToString() |
| 1040 | { |
no test coverage detected