-
Notifications
You must be signed in to change notification settings - Fork 25.8k
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
feat(base_query_list): delegate toString,valueOf to _results array #3004
Conversation
c9d0a63
to
17bcef5
Compare
@@ -35,6 +35,10 @@ export class BaseQueryList<T> { | |||
|
|||
removeCallback(callback): void { ListWrapper.remove(this._callbacks, callback); } | |||
|
|||
toString(): string { return this._results.toString(); } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add it to base_query_list.dart
too.
5bf43d2
to
7899dd4
Compare
Need to fix dart tests, |
323e442
to
e2061c6
Compare
@gdi2290 What is the status here? |
e2061c6
to
4da2986
Compare
4da2986
to
107a06f
Compare
sorry I forgot to reply but the status is good to go |
Merging PR #3004 on behalf of @tbosch to branch presubmit-tbosch-pr-3004. |
I got an email saying this commit had an error on travis |
Merging PR #3004 on behalf of @tbosch to branch presubmit-tbosch-pr-3004. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Goal
better support for #2916 and developers that use
|json
forQueryList
instances