begin method

  1. @override
void begin(
  1. TagContext tc,
  2. String data
)
override

Called when the beginning of a tag is encountered.

Implementation

@override
void begin(TagContext tc, String data) {
  tc.data = new ArgInfo(tc, data);
  tc.args = new LinkedHashMap<String, String>(); //order is important
}