GetRegExpProxy() private method

private GetRegExpProxy ( ) : RegExpProxy
return RegExpProxy
コード例 #1
0
ファイル: ScriptRuntime.cs プロジェクト: hazzik/Rhino.Net
		public static Scriptable WrapRegExp(Context cx, Scriptable scope, object compiled)
		{
			return cx.GetRegExpProxy().WrapRegExp(cx, scope, compiled);
		}
コード例 #2
0
ファイル: ScriptRuntime.cs プロジェクト: hazzik/Rhino.Net
		public static RegExpProxy GetRegExpProxy(Context cx)
		{
			return cx.GetRegExpProxy();
		}