示例#1
0
文件: Value.cs 项目: repos-css/More
        internal override Value Evaluate()
        {
            var ret = new UrlValue(UrlPath.Evaluate());
            ret.Start = this.Start;
            ret.Start = this.Stop;
            ret.FilePath = this.FilePath;

            return ret;
        }
示例#2
0
文件: Value.cs 项目: repos-css/More
        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;
        }