コード例 #1
0
ファイル: Glob.cs プロジェクト: theroadninja/Sanderling
 static public bool PyObjTypNameIsSprite(
     this GbsAstInfo uiNode) =>
 uiNode.PyObjTypNameMatchesRegex(PyTypeNameSpriteRegex);
コード例 #2
0
ファイル: Glob.cs プロジェクト: theroadninja/Sanderling
 static public bool PyObjTypNameMatchesRegexPattern(
     this GbsAstInfo uiNode,
     string regexPattern,
     RegexOptions regexOptions = RegexOptions.None) =>
 uiNode.PyObjTypNameMatchesRegex(regexPattern.AlsRegex(regexOptions));