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 .. syntax for RangeFull as expression #21947

Merged
merged 2 commits into from
Feb 6, 2015

Commits on Feb 4, 2015

  1. Implement .. syntax for RangeFull as expression

    Allows the expression `..` (without either endpoint) in general, can be
    used in slicing syntax `&expr[..]` where we previously wrote `&expr[]`.
    
    The old syntax &expr[] is not yet removed or warned for.
    Ulrik Sverdrup committed Feb 4, 2015
    Configuration menu
    Copy the full SHA
    7523914 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2015

  1. Implement pretty-printing of .. and update tests.

    Update tests to change all `&expr[]` to `&expr[..]` to make sure pretty printing
    passes.
    Ulrik Sverdrup committed Feb 5, 2015
    Configuration menu
    Copy the full SHA
    7d527fa View commit details
    Browse the repository at this point in the history