parse method
Implementation
ParseOutput parse(ParseInput input) {
try {
return ParseOutput(expr: _parse(Expr_Path(), input.value));
} catch (e) {
return ParseOutput(isError: true, errorMessage: 'fail to parse: $e');
}
}
ParseOutput parse(ParseInput input) {
try {
return ParseOutput(expr: _parse(Expr_Path(), input.value));
} catch (e) {
return ParseOutput(isError: true, errorMessage: 'fail to parse: $e');
}
}