stringLiteral property

  1. @override
StringLiteralImpl? stringLiteral
override

Return the string literal representing the string after the 'native' token.

Implementation

@override
StringLiteralImpl? get stringLiteral => _stringLiteral;
void stringLiteral=(StringLiteralImpl? stringLiteral)

Implementation

set stringLiteral(StringLiteralImpl? stringLiteral) {
  _stringLiteral = _becomeParentOf(stringLiteral);
}