Exemplo n.º 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;
        }
Exemplo n.º 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;
        }