本文整理汇总了C#中Microsoft.PythonTools.Parsing.Ast.PythonAst.IndexToLocation方法的典型用法代码示例。如果您正苦于以下问题:C# PythonAst.IndexToLocation方法的具体用法?C# PythonAst.IndexToLocation怎么用?C# PythonAst.IndexToLocation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.PythonTools.Parsing.Ast.PythonAst
的用法示例。
在下文中一共展示了PythonAst.IndexToLocation方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetStop
public override int GetStop(PythonAst ast) {
return ast.IndexToLocation(_endIndex).Index;
}
示例2: GetHeader
public SourceLocation GetHeader(PythonAst ast) {
return ast.IndexToLocation(_headerIndex);
}
示例3: GetStart
public override int GetStart(PythonAst ast) {
return ast.IndexToLocation(_startIndex).Index;
}
示例4: GetEnd
public SourceLocation GetEnd(PythonAst parent) {
return parent.IndexToLocation(EndIndex);
}
示例5: GetStart
public SourceLocation GetStart(PythonAst parent) {
return parent.IndexToLocation(StartIndex);
}
示例6: GetBodyStart
public override int GetBodyStart(PythonAst ast) {
return ast.IndexToLocation(((ClassDefinition)Node).HeaderIndex).Index;
}
示例7: GetNameSpan
/// <summary>
/// Returns the span of the name component of the expression
/// </summary>
public SourceSpan GetNameSpan(PythonAst parent) {
return new SourceSpan(parent.IndexToLocation(_nameHeader), GetEnd(parent));
}