Git Product home page Git Product logo

Comments (5)

HerringtonDarkholme avatar HerringtonDarkholme commented on July 21, 2024

You can already access them via node.range()

Example code

impl Range {
pub fn from<D: Doc>(node: &Node<D>, positioner: &UnicodePosition) -> Self {
let byte_range = node.range();
let start_pos = node.start_pos();
let end_pos = node.end_pos();
let start = positioner.byte_to_char(byte_range.start);
let end = positioner.byte_to_char(byte_range.end);
Range {
start: to_pos(start_pos, start),
end: to_pos(end_pos, end),
}
}
}

from ast-grep.

etiennebacher avatar etiennebacher commented on July 21, 2024

Indeed, thank you and sorry for bothering

from ast-grep.

HerringtonDarkholme avatar HerringtonDarkholme commented on July 21, 2024

If you are integrating ast-grep into other programming language, the napi and pyo3 folders will be very helpful.

One particular thing you may need pay attention to is the text encoding. Tree-sitter returns a byte offset in utf8 or utf16, which is usually not how programming languages handle character offsets.

from ast-grep.

HerringtonDarkholme avatar HerringtonDarkholme commented on July 21, 2024

Another repo for reference https://github.com/Zheaoli/astgrep-java-unonfficial

from ast-grep.

etiennebacher avatar etiennebacher commented on July 21, 2024

Thanks for the hints, I'm definitely following the pyo3 implementation

from ast-grep.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.