Exemplo n.º 1
0
 static public bool PyObjTypNameIsSprite(
     this GbsAstInfo uiNode) =>
 uiNode.PyObjTypNameMatchesRegex(PyTypeNameSpriteRegex);
Exemplo n.º 2
0
 static public bool PyObjTypNameMatchesRegexPattern(
     this GbsAstInfo uiNode,
     string regexPattern,
     RegexOptions regexOptions = RegexOptions.None) =>
 uiNode.PyObjTypNameMatchesRegex(regexPattern.AlsRegex(regexOptions));