Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parsing for typed function reference types #1889

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Apr 5, 2022

  1. Fix parsing for typed function reference types

    Previously an indexed ref type was parsed as a `Var`,
    assuming that regular types would be represented as
    index vars and named ref types would be named vars.
    
    Unfortunately, it's also possible for a ref type to
    be an indexed var that overlaps with a type (e.g.,
    the type "any" which is 0x0 and the index 0).
    
    This commit restructures the code so that both a `Type`
    and `Var` are returned.
    takikawa committed Apr 5, 2022
    Configuration menu
    Copy the full SHA
    083e716 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2022

  1. Configuration menu
    Copy the full SHA
    3c3425b View commit details
    Browse the repository at this point in the history