当前位置: 首页>>代码示例>>C#>>正文


C# IToken.getText方法代码示例

本文整理汇总了C#中IToken.getText方法的典型用法代码示例。如果您正苦于以下问题:C# IToken.getText方法的具体用法?C# IToken.getText怎么用?C# IToken.getText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IToken的用法示例。


在下文中一共展示了IToken.getText方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: initialize

 /// <summary>
 /// initialize this instance from an IToken
 /// </summary>
 public override void initialize(IToken tok)
 {
     this.setText(tok.getText());
     this.Type = tok.Type;
 }
开发者ID:hazzik,项目名称:nh-contrib-everything,代码行数:8,代码来源:SpringAST.cs

示例2: MismatchedTokenException

 // Expected token / not token
 public MismatchedTokenException(string[] tokenNames_, IToken token_, int expecting_, bool matchNot, string fileName_) :
     base("Mismatched Token", fileName_, token_.getLine(), token_.getColumn())
 {
     tokenNames = tokenNames_;
     token = token_;
     tokenText = token_.getText();
     mismatchType = matchNot ? TokenTypeEnum.NotTokenType : TokenTypeEnum.TokenType;
     expecting = expecting_;
 }
开发者ID:logikonline,项目名称:DDay.iCal,代码行数:10,代码来源:MismatchedTokenException.cs

示例3: CreateToken

		static IToken CreateToken(IToken prototype, int newTokenType, string newTokenText)
		{
			return new BooToken(newTokenType, newTokenText,
			                    prototype.getFilename(),
			                    prototype.getLine(),
			                    prototype.getColumn()+SafeGetLength(prototype.getText()));
		}
开发者ID:Rfvgyhn,项目名称:boo,代码行数:7,代码来源:WSATokenStreamFilter.cs

示例4: initialize

	public override void initialize(IToken tok) {
		if (tok.Type == CalcParserTokenTypes.INT)
			v = Convert.ToInt32(tok.getText());
	}
开发者ID:0xb1dd1e,项目名称:boo,代码行数:4,代码来源:INTNode.cs

示例5: initialize

		override public void  initialize(IToken tok)
		{
			setText(tok.getText());
			Type = tok.Type;
		}
开发者ID:spring-projects,项目名称:spring-net,代码行数:5,代码来源:CommonAST.cs

示例6: UnexpectedToken

 protected void UnexpectedToken(IToken token)
 {
     this.ReportError(CompilerErrorFactory.UnexpectedToken(ToLexicalInfo(token), null, token.getText()));
 }
开发者ID:CarlosHBC,项目名称:UnityDecompiled,代码行数:4,代码来源:UnityScriptParser.cs

示例7: ToSourceLocation

 public static SourceLocation ToSourceLocation(IToken token)
 {
     string str = token.getText();
     int num = (str != null) ? (str.Length - 1) : 0;
     return new SourceLocation(token.getLine(), token.getColumn() + num);
 }
开发者ID:CarlosHBC,项目名称:UnityDecompiled,代码行数:6,代码来源:UnityScriptParser.cs

示例8: AddFunctionTo

 public Method AddFunctionTo(TypeDefinition type, IToken nameToken, IToken getter, IToken setter)
 {
     Method method;
     string name = nameToken.getText();
     LexicalInfo info = ToLexicalInfo(nameToken);
     Method method1 = method = new Method(info);
     method.set_Name(name);
     Method node = !IsConstructorName(name, type) ? method : new Constructor(info);
     if ((getter != null) || (setter != null))
     {
         Property property = type.get_Members().get_Item(name) as Property;
         if (property == null)
         {
             Property property2;
             Property property1 = property2 = new Property(info);
             property2.set_Name(name);
             property = property2;
             type.get_Members().Add(property);
         }
         if (getter != null)
         {
             if (property.get_Getter() != null)
             {
                 throw new AssertionFailedException("p.Getter is null");
             }
             property.set_Getter(node);
         }
         else
         {
             if (property.get_Setter() != null)
             {
                 throw new AssertionFailedException("p.Setter is null");
             }
             property.set_Setter(node);
         }
         this.FlushAttributes(property);
         return node;
     }
     type.get_Members().Add(node);
     this.FlushAttributes(node);
     return node;
 }
开发者ID:CarlosHBC,项目名称:UnityDecompiled,代码行数:42,代码来源:UnityScriptParser.cs

示例9: KeywordCannotBeUsedAsAnIdentifier

 protected void KeywordCannotBeUsedAsAnIdentifier(IToken token)
 {
     this.ReportError(UnityScriptCompilerErrors.KeywordCannotBeUsedAsAnIdentifier(ToLexicalInfo(token), token.getText()));
 }
开发者ID:CarlosHBC,项目名称:UnityDecompiled,代码行数:4,代码来源:UnityScriptParser.cs


注:本文中的IToken.getText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。