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

v1.1.0 #146

Merged
merged 16 commits into from Feb 2, 2019
Merged

v1.1.0 #146

merged 16 commits into from Feb 2, 2019

Conversation

odino
Copy link
Collaborator

@odino odino commented Jan 31, 2019

No description provided.

@odino odino added this to the 1.1.x milestone Jan 31, 2019
@odino odino self-assigned this Jan 31, 2019
```
for k, v in {"a": 1, "b": 2, "c": 3} {
  echo(k, v)
}
```

This required a bit of a refactoring on the iterables,
but nothing too crazy.
```
myhash = {"some": "thing", "over": "the rainbow", "x": "y"}
some, over = myhash
echo(some) # "thing"
```

@ntwrick I had to revert one of your changes we introduced
when adding error lines etc. When we evaluate null literals
we always return a new object, and this means that when
you compare `null == null` that is `false` as they're 2
different objects. For now I reverted that line you changed
but maybe we could also think of adding a special case to
handle `==` with nulls. Problem is, you'd have to add another
special case for `!=` so I think it's probably easier to just
reuse the same object for nulls...what do you think?
```
"x" in {"x": 1} # true
```
@odino odino merged commit c51f9bf into master Feb 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants