-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
view._renderNode.lastResult giving "Uncaught TypeError: Cannot read property 'lastResult' of null" #13968
Comments
_renderNode is private and not part of glimmer2 |
OK, but I don't know how I'm causing this failure. I'm not using any private code in my addon code, maybe one of the addons I'm using is having issues with glimmer 2. My ember debugging skills are apparently lacking in this case. |
This is still happening. Would you say it's probably an addon I'm using that's using an old htmlbars version? Any debugging tips are appreciated! cc @krisselden |
It should be fixed by #14110. |
@rwjblue Using that branch, it didn't seem to fix it: https://travis-ci.org/kellyselden/ember-tree/jobs/154205905 |
@kellyselden - Sorry, I forgot to update the bower tree after my last commit. Can you blow cache and test again? |
@rwjblue Works now! |
I have unsuccessful in tracking this down so far. A few days ago when canary ticked over to beta, I noticed that canary the whole time and now beta are failing for my addon:
Here is one of the travis build logs https://travis-ci.org/kellyselden/ember-tree/builds/148237768. I tried removing dependencies to narrow it down, but then tests start failing for other reasons.
When debugging,
if (view._renderNode.lastResult) {
passes through the first time, then fails on the second. I inspectedview
and although it doesn't have a_renderNode
property, it does have alastResult
property. I don't know if that helps.The text was updated successfully, but these errors were encountered: