scriptTag property

  1. @override
ScriptTagImpl? scriptTag
override

Return the script tag at the beginning of the compilation unit, or null if there is no script tag in this compilation unit.

Implementation

@override
ScriptTagImpl? get scriptTag => _scriptTag;
void scriptTag=(ScriptTagImpl? scriptTag)

Implementation

set scriptTag(ScriptTagImpl? scriptTag) {
  _scriptTag = _becomeParentOf(scriptTag);
}