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 asc compilation #122

Merged
merged 4 commits into from
Sep 27, 2023
Merged

Fix asc compilation #122

merged 4 commits into from
Sep 27, 2023

Commits on Aug 4, 2023

  1. Configuration menu
    Copy the full SHA
    6b402a8 View commit details
    Browse the repository at this point in the history
  2. fix #120 and compile AS without optimisation

    To compile ASC without any optimisation I removed the `03s` argument
    carllocos authored and tolauwae committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    3704c93 View commit details
    Browse the repository at this point in the history
  3. fix regex to only be true for source maps

    AssemblyScript compiler can generate lines that contain the `@` symbol but have nothing to do with the source mapping (e.g., '000287d: 6e67 2e55 5446 382e 656e 636f 6465 4076  ng.UTF8.encode@v') which causes `extractLineInfo` to fail on those lines.
    This commit modifies the regex to only be true for lines that start with `@ {` which ensures that `extractLineInfo` is applied to real source map lines.
    carllocos authored and tolauwae committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    0fbaf33 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

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