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

... #42

Open
wants to merge 52 commits into
base: master
Choose a base branch
from
Open

... #42

wants to merge 52 commits into from

Commits on Feb 4, 2019

  1. Configuration menu
    Copy the full SHA
    ccabd98 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c1d6bed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ab3159 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0ed2bbd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    410d96a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    aa6402d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    930b01e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cfc8754 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    120cf03 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    49c811e View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0bfeeea View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a45dbd4 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2019

  1. Bug-fix to for loops with multiple initializers

    Multiple initializers should be comma-separated.
    cscott committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    2a3a31e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed5b647 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ea8ac24 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7e37a83 View commit details
    Browse the repository at this point in the history
  5. Stub support for RegExp#exec

    cscott committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    761bcdc View commit details
    Browse the repository at this point in the history
  6. Avoid unwanted aliases when looking up core library functions

    This prevents matching 'hasOwnProperty' and other properties of object.
    cscott committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    02a15c1 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d48896e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    22d0067 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    97b1cdd View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    afc9702 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2019

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

Commits on Feb 12, 2019

  1. Configuration menu
    Copy the full SHA
    4085195 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59646b7 View commit details
    Browse the repository at this point in the history
  3. Disambiguate property access from method access in core library support

    Property names are encoded with a leading dot, since method names are the
    most common case.  This allows us to handle `Array.prototype.slice.call(...)`
    and similar constructs in a subsequent patch.
    cscott committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    68835b1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    74730de View commit details
    Browse the repository at this point in the history
  5. Date.now() is a static method

    cscott committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    42c4aef View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9ef8f03 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    859c78b View commit details
    Browse the repository at this point in the history
  8. Emit elseif where appropriate

    cscott committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    5a55da1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    79e81e7 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2f58fde View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    8c5b523 View commit details
    Browse the repository at this point in the history
  12. Handle EmptyStatement

    cscott committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    6834267 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    9fb16d5 View commit details
    Browse the repository at this point in the history
  14. Fix function name translation

    cscott committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    94b4a16 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2019

  1. Configuration menu
    Copy the full SHA
    9e03fa1 View commit details
    Browse the repository at this point in the history
  2. Emit NULL for JS undefined

    cscott committed Feb 13, 2019
    Configuration menu
    Copy the full SHA
    d081a1f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    87d8818 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08abce1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0956fa0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    485566a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4235ef1 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a09497e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    74295f9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ec00f21 View commit details
    Browse the repository at this point in the history
  11. Handle calls to Array#slice with no arguments

    This is common in JS, which passes arrays by reference, but is generally
    not useful in PHP, which passes arrays by value.
    cscott committed Feb 13, 2019
    Configuration menu
    Copy the full SHA
    8e32151 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0c26ebe View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    da730e8 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2019

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

Commits on May 4, 2019

  1. $ npm audit fix

    zaoqi committed May 4, 2019
    Configuration menu
    Copy the full SHA
    4ca1b38 View commit details
    Browse the repository at this point in the history