GithubHelp home page GithubHelp logo

Comments (6)

Michael0x2a avatar Michael0x2a commented on September 28, 2024 1

@erezsh -- sorry for the delayed response. I can confirm that the code currently on master resolves my issue. Thanks for the fix!

from lark.

 avatar commented on September 28, 2024 1

@erezsh Sorry, my bad. I was using Lark - v0.6.6. It works on master!
Thanks!

from lark.

erezsh avatar erezsh commented on September 28, 2024

(Ignore my comment if you saw it. I will address this bug soon)

from lark.

erezsh avatar erezsh commented on September 28, 2024

Hi Michael,
Sorry it took me a while to get to this issue, and thank you for pointing out a bug in Lark's core.
I just pushed a fix to master. Let me know if it solves this issue.

from lark.

 avatar commented on September 28, 2024

Hi -- I still have this issue with the following grammar

from lark import Lark

grammar = '''
start :  "1"
      | "1" "+" start
      | start "-" start
      | "(" start ")"
      | "(" start ")" "-" start
'''

foo = '1+(1+1)-1'

parser = Lark(grammar, start='start', ambiguity='explicit')
print(parser.parse(foo))

Output -

Tree(_ambig, [
    Tree(start, [
        Tree(start, [
            Tree(start, [
                Tree(start, [
                    Tree(drv, [Token(__ANON_0, '1')])
                ])
            ])
        ]),
        Tree(start, [])
    ]),
    Tree(start, [
        Tree(start, [
            Tree(start, [
                Tree(start, [])
            ]),
            Tree(start, [])
        ])
    ]),
    Tree(start, [
        Tree(start, [
            Tree(start, [
                Tree(start, [
                    Tree(drv, [Token(__ANON_0, '1')])
                ])
            ]),
            Tree(start, [])
        ])
    ])
])

Lark Version - v0.7.0
Python - v3.7.3

Thanks!

from lark.

erezsh avatar erezsh commented on September 28, 2024

@anishparanjpe Are you sure about these versions? I can't reproduce it (with Python 3.7.0)

from lark.

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.