Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jashkenas/coffeescript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.11.0
Choose a base ref
...
head repository: jashkenas/coffeescript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.11.1
Choose a head ref
  • 10 commits
  • 75 files changed
  • 2 contributors

Commits on Sep 26, 2016

  1. Update the changelog for 1.11.0

    Fixes #4321.
    lydell committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    b0d8fca View commit details
    Browse the repository at this point in the history
  2. Fix isLiteralArguments

    `isLiteralArguments` mistakenly looked at `Literal`s instead of
    `IdentifierLiteral`s.
    
    This also gets rid of the ugly `.asKey` hack in nodes.coffee.
    
    Fixes #4320.
    lydell committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    3204180 View commit details
    Browse the repository at this point in the history
  3. Handle very large hexadecimal number literals correctly

    Very large decimal number literals, binary number literals and octal
    literals are lexed into an INFINITY token (instead of a NUMBER token)
    and compiled into `2e308`. That is is supposed to be the case for very
    large hexdecimal dumber literals as well, but previously wasn't.
    
    Before:
    
        $ node -p 'require("./").tokens(`0x${Array(256 + 1).join("f")}`)[0][0]'
        NUMBER
    
    After:
    
        $ node -p 'require("./").tokens(`0x${Array(256 + 1).join("f")}`)[0][0]'
        INFINITY
    
    This commit also cleans up `numberToken` in lexer.coffee a bit.
    lydell committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    57f5297 View commit details
    Browse the repository at this point in the history
  4. Fix indentation-stripping in """ strings

    `"""` (and `"`) strings are lexed into an array of tokens, consisting of
    strings and interpolations. Previously, the minimum indententation
    inside `"""` strings was stripped from the beginning of _all_ of those
    string tokens. Usually, the indentation is longer than any other
    sequence of spaces in a `"""` string, so the problem didn't occur in
    most cases. This commit makes sure to only strip indentation after
    newlines.
    
    Fixes #4314.
    lydell committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    568a0c7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    964a588 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #4322 from fliptheweb/patch-1

    Fix minor typo in changelog for 1.11.0
    lydell authored Sep 26, 2016
    Configuration menu
    Copy the full SHA
    0b2d852 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2016

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

Commits on Oct 1, 2016

  1. Configuration menu
    Copy the full SHA
    809634b View commit details
    Browse the repository at this point in the history
  2. CoffeeScript 1.11.1

    lydell committed Oct 1, 2016
    Configuration menu
    Copy the full SHA
    8623792 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2016

  1. Merge pull request #4327 from lydell/1.11.1

    1.11.1
    lydell authored Oct 2, 2016
    Configuration menu
    Copy the full SHA
    7b9fbf2 View commit details
    Browse the repository at this point in the history
Loading