keys property

dynamic get keys

Interpolation keys of string template

Implementation

get keys {
	Set<String> ret = Set.from(_subs);
	//Escape characters are not keys
	return ret..remove("pre")..remove("suf");
}