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

Implement most of the Scala.js IR code generator. #1148

Merged
merged 5 commits into from
Mar 18, 2016

Commits on Mar 7, 2016

  1. Move the logic of ExpandSAMs.isJvmSam to Platform.isSam.

    Whether a language SAM type is also a valid SAM type for the
    back-end is a platform-specific thing. On Scala.js, for example,
    the rules are completely different than for the JVM.
    
    This commit therefore moves the logic of the predicate used by
    ExpandSAMs to decide whether to expand a SAM as an anonymous class
    to the Platform.
    sjrd committed Mar 7, 2016
    Configuration menu
    Copy the full SHA
    c14c9c0 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2016

  1. Implement most of the Scala.js IR code generator.

    Notable things that are missing at this point:
    
    * Pattern matching
    * Try
    * Most of the JavaScript interop
    sjrd committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    d0dd700 View commit details
    Browse the repository at this point in the history
  2. Implement most of use-site JavaScript interop.

    Notable things that are not yet implemented:
    * JS exports
    * Scala.js-defined JS classes.
    sjrd committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    3f47afb View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2016

  1. Configuration menu
    Copy the full SHA
    9b98abf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    122b035 View commit details
    Browse the repository at this point in the history