Code Monkey home page Code Monkey logo

Comments (3)

benjamn avatar benjamn commented on May 14, 2024

Technically the location object that really matters is newNode.original.loc, so you might be able to do newNode.original = oldNode.original. Then, if newNode.type === oldNode.type, the reprinter should be able to reuse the source from oldNode.

Those .original properties get set in the copyAst function:
https://github.com/benjamn/recast/blob/1ddd828daaed35a43999331acafd761bf5430edf/lib/parser.js#L125

The idea is that recast.parse hands you back a copied AST where every node starts out with an .original property referring to the AST node originally produced by Esprima, so as you modify the copied tree the new nodes you introduce won't have an .original property, so they will be printed by the pretty-printer instead of getting reprinted using the original source.

from ast-types.

GianlucaGuarini avatar GianlucaGuarini commented on May 14, 2024

@benjamn your answer is now 4 years old and I don't think it's still working. Is there a way to define the node location with the newest ast-types and recast versions? Your help will be really appreciate.

I guess something like that should work but it will not :(

const node = builders.callExpression(builders.identifier('foo'), [])

node.loc = {
  start: { line: 10, column: 0 },
  end: { line: 10, column: 3 }
}

const {map} = recast.print(node)

from ast-types.

GianlucaGuarini avatar GianlucaGuarini commented on May 14, 2024

I have made also a live demo to show the issue https://runkit.com/gianlucaguarini/5c5b1271e4b0c90013575af7 @benjamn any help would be really appreciated!

I am using ast-types and recast in the new @riotjs/compiler and this is the only issue am not able to solve since a couple of weeks

from ast-types.

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.