All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.joern.pythonparser.PositionToken Maven / Gradle / Ivy

There is a newer version: 4.0.78
Show newest version
package io.joern.pythonparser;

public class PositionToken {
    public int startPos = -1;
    // Non inclusive. Points behind the last token character.
    public int endPos = -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy