end method

  1. @override
void end(
  1. TagContext tc
)
override

Called when the ending of a tag is encountered.

Implementation

@override
void end(TagContext tc) {
  final argInfo = tc.data as ArgInfo;
  final args = _mergeArgs(argInfo.args, tc.args);
  if (argInfo.isID)
    tc.compiler.forward(argInfo.first, args, tc.line);
  else
    tc.compiler.forwardUri(argInfo.first, args, tc.line);
}