GithubHelp home page GithubHelp logo

Comments (6)

Gohla avatar Gohla commented on June 19, 2024

If this production is in a kernel syntax section (syntax), that error will not occur. However, then you will get an error that the sort of the production is not of kind kernel. Sorts of kind kernel would be definable in a sorts section, but it seems that the sorts section is desugared into context-free sorts in SDF3, making it impossible to define kernel sorts. Maybe a quick fix would be to have -CF and -LEX symbols be of kind kernel.

from spoofax-pie.

Gohla avatar Gohla commented on June 19, 2024

Solved by metaborg/sdf@3579ddd. It is possible to define the production without errors as follows:

sorts

  Section SectionName Definition

syntax

  Section-CF.Section = "section" SectionName-CF LAYOUT?-CF Definition*-CF

There is no checking whether the -CF sorts are context-free sorts though.

from spoofax-pie.

Virtlink avatar Virtlink commented on June 19, 2024

Okay, previously doing this would give an error because Section-CF would be a context-free kernel sort declared in a (non-context-free) kernel syntax section, requiring the section to be changed to context-free syntax.

from spoofax-pie.

Gohla avatar Gohla commented on June 19, 2024

There seems to be a bug where the SDF3->Stratego signature generator fails on LAYOUT?-CF in those kernel syntax productions, I will have a look at that tomorrow.

from spoofax-pie.

Virtlink avatar Virtlink commented on June 19, 2024

In Spoofax 3 it generates the following Stratego for it:

OpDecl("Section", FunType(
    [ ConstType(SortNoArgs("SectionName"))
    , OPT(LAYOUT(){OfSort(SORT("TYPE"))}){OfSort(SORT("TYPE"))}
    , ConstType(Sort("List", [ConstType(SortNoArgs("Definition"))]))
    ], ConstType(SortNoArgs("Section"))
))

In Spoofax 2 it seems to be:

OpDecl("Section", FunType(
    [ ConstType(SortNoArgs("SectionName"))
    , ConstType(Sort("List", [SortNoArgs("Definition")]))
    ], ConstType(SortNoArgs("Section"))
))

Spoofax 2 is correct. Apparently they are not using the same version of the signature generator?

from spoofax-pie.

Gohla avatar Gohla commented on June 19, 2024

Should be fixed metaborg/sdf@d88c75a (untested)

from spoofax-pie.

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.