コード例 #1
0
		public void CreateParseInformation()
		{
			var parser = new CSharpBinding.Parser.TParser();
			var cu = parser.Parse(pc, this.FileName, this.Document);
			ParserService.RegisterParseInformation(this.FileName, cu);
			pc.UpdateCompilationUnit(null, cu, this.FileName);
		}
コード例 #2
0
        public void CreateParseInformation()
        {
            var parser = new CSharpBinding.Parser.TParser();
            var cu     = parser.Parse(pc, this.FileName, this.Document);

            ParserService.RegisterParseInformation(this.FileName, cu);
            pc.UpdateCompilationUnit(null, cu, this.FileName);
        }
コード例 #3
0
        public ParseInformation CreateParseInformation()
        {
            var parser = new CSharpBinding.Parser.TParser();

            return(parser.Parse(this.FileName, this.Document, true, null, CancellationToken.None));
        }
コード例 #4
0
		public ParseInformation CreateParseInformation()
		{
			var parser = new CSharpBinding.Parser.TParser();
			return parser.Parse(this.FileName, this.Document, true, null, CancellationToken.None);
		}