innerSource method
Reconstruct this Node's inner source code (the source of its children.)
Implementation
@override String innerSource([int level = 0]) {
var token = Token(TokenType.text, 0, text: text);
return indent(token.toSource(), level);
}
Reconstruct this Node's inner source code (the source of its children.)
@override String innerSource([int level = 0]) {
var token = Token(TokenType.text, 0, text: text);
return indent(token.toSource(), level);
}