Coder Social home page Coder Social logo

Comments (2)

mwhipple avatar mwhipple commented on July 28, 2024

The code provided in the plugin makes my head hurt and primarily seems like a convoluted way to indent properly. There are 4 decent approaches that I can think of:

1.GString

The simplest approach would just be to spit out a string without anything beyond string manipulation. This has the enormous advantage of being very simple

2.Builder

The grooviest but least lispy would be to go the full builder approach and rely on child nodes rather than attributes to allow nesting. Something like foo { bar{} } => (foo (bar)).

3.Method Argument Builder

The structure of lisp would most closely match that of a method call where the full list is the arguments along the lines of x(foo x(bar)) => (foo (bar)). This would likely also have to be wrapped in a builder or similar block so that unresolved identifiers pass through the proper missing property handler.

4.Clojure

Clojure could potentially be used to generate the code.

from gradle-emacs-jdee.

mwhipple avatar mwhipple commented on July 28, 2024

I'll scrap 1 since it's least interesting and non-work code might as well be interesting. Also 4 seems like it could get very muddy and introduce far more overhead. I'll probably start with 2 since it should be fairly simple.

from gradle-emacs-jdee.

Related Issues (7)

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.