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

[BUGFIX beta] Make {{get something 'path.goes.here'}} work. #12323

Merged

Commits on Sep 10, 2015

  1. [BUGFIX beta] Make {{get something 'path.goes.here'}} work.

    The `get` keyword should be roughly the same as `Ember.get`, but
    previously we were asserting when the path included a `.`. This was most
    likely because in the non-dynamic key case we were always using a
    `KeyStream` instead of calling `source.get(newPath)` (a `KeyStream` will
    assert when its path includes a `.` but `BasicStream#get` will
    automatically create the correct stream for that path).
    
    This removes the asserts, hard coded `KeyStream` usage, and adds a
    number of tests for nested keys.
    rwjblue committed Sep 10, 2015
    Configuration menu
    Copy the full SHA
    4c124c3 View commit details
    Browse the repository at this point in the history