Git Product home page Git Product logo

ebnf.cr's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ebnf.cr's Issues

Error running code samples in README

Tried running a couple of the code samples in the Parsing section, got the same error each time:

In lib\ebnf\src\ebnf\grammar\rule.cr:89:48

 89 | def initialize(@atoms = Array(Atom).new, @action = nil)
                                               ^
Error: instance variable @action of EBNF::Bison::Rule was inferred to be Nil, but Nil alone provides no information

Bison to EBNF conversion doesn't work

Minimal reproducer with Dockerfile in: https://github.com/lvh/yacc2bnf

Code:

require "ebnf"

grammar = <<-Grammar
root:
    foo             { puts "foo" }
    | bar           { puts "bar" }

foo:
    A B
    | B B

bar:
    B A
    | A B
Grammar

bison = EBNF::Bison.from grammar
bison.to_bnf
puts bison

Error:

Error in yacc2bnf.cr:18: instantiating 'EBNF::Grammar#to_bnf()'

bison.to_bnf
      ^~~~~~

in lib/ebnf/src/ebnf/to_bnf.cr:78: instantiating 'EBNF::BNF:Module#from_bison(EBNF::Grammar)'

      when Type::Bison then BNF.from_bison dup
                                ^~~~~~~~~~

in lib/ebnf/src/ebnf/to_bnf.cr:6: instantiating 'EBNF::Grammar#each_production()'

      grammar.each_production do |production|
              ^~~~~~~~~~~~~~~

in lib/ebnf/src/ebnf/grammar/grammar.cr:169: instantiating 'Hash(String, EBNF::Production)#each_value()'

      @productions.each_value { |production| yield production }
                   ^~~~~~~~~~

in usr/lib/crystal/core/hash.cr:369: instantiating 'each()'

    each do |key, value|
    ^~~~

in usr/lib/crystal/core/hash.cr:369: instantiating 'each()'

    each do |key, value|
    ^~~~

in lib/ebnf/src/ebnf/grammar/grammar.cr:169: instantiating 'Hash(String, EBNF::Production)#each_value()'

      @productions.each_value { |production| yield production }
                   ^~~~~~~~~~

in lib/ebnf/src/ebnf/to_bnf.cr:6: instantiating 'EBNF::Grammar#each_production()'

      grammar.each_production do |production|
              ^~~~~~~~~~~~~~~

in lib/ebnf/src/ebnf/to_bnf.cr:7: instantiating 'Array(EBNF::Rule)#each_with_index()'

        production.rules.each_with_index do |rule, i|
                         ^~~~~~~~~~~~~~~

in usr/lib/crystal/core/enumerable.cr:377: instantiating 'each()'

    each do |elem|
    ^~~~

in usr/lib/crystal/core/indexable.cr:148: instantiating 'each_index()'

    each_index do |i|
    ^~~~~~~~~~

in usr/lib/crystal/core/indexable.cr:148: instantiating 'each_index()'

    each_index do |i|
    ^~~~~~~~~~

in usr/lib/crystal/core/enumerable.cr:377: instantiating 'each()'

    each do |elem|
    ^~~~

in lib/ebnf/src/ebnf/to_bnf.cr:7: instantiating 'Array(EBNF::Rule)#each_with_index()'

        production.rules.each_with_index do |rule, i|
                         ^~~~~~~~~~~~~~~

in lib/ebnf/src/ebnf/to_bnf.cr:9: wrong number of arguments for 'EBNF::Production#[]=' (given 2, expected 1)
Overloads are:
 - EBNF::Production#[]=(arg)

            production[i] = Rule.new bison_rule.atoms

Build fails with Crystal 1.7.2

~/repos/bt/EBNF.cr/ asdf which crystal                  /Users/b/.asdf/installs/crystal/1.7.2/bin/crystal
~/repos/bt/EBNF.cr/ asdf which shards 
/Users/b/.asdf/installs/crystal/1.7.2/embedded/bin/shards
~/repos/bt/EBNF.cr/ shards build --release --production
Dependencies are satisfied
Building: ebnf
Error target ebnf failed to compile:
Showing last frame. Use --error-trace for full trace.

In src/ebnf/grammar/rule.cr:89:48

 89 | def initialize(@atoms = Array(Atom).new, @action = nil)
                                               ^
Error: instance variable @action of EBNF::Bison::Rule was inferred to be Nil, but Nil alone provides no information

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.