Example #1
0
        internal override Value Evaluate()
        {
            var ret = new UrlValue(UrlPath.Evaluate());
            ret.Start = this.Start;
            ret.Start = this.Stop;
            ret.FilePath = this.FilePath;

            return ret;
        }
Example #2
0
        public override Value Bind(Scope scope)
        {
            var ret = new UrlValue(UrlPath.Bind(scope));
            ret.Start = this.Start;
            ret.Start = this.Stop;
            ret.FilePath = this.FilePath;

            return ret;
        }