Inheritance: DynamicObject
コード例 #1
0
ファイル: StringFunction.cs プロジェクト: ajlopez/AjScript
        public StringFunction(IContext context)
            : base(null, null, context)
        {
            var prototype = new StringObject();

            this.SetValue("prototype", prototype);
            prototype.SetValue("toString", new LambdaCallable(ToString));
        }