-
Notifications
You must be signed in to change notification settings - Fork 54
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
use new glimmer ElementNode sub nodes #696
base: v1.x
Are you sure you want to change the base?
Changes from all commits
eb16ae6
eb75445
f0bf4c4
240b8d4
d9f6d21
3be0379
962ec06
a6f4f07
ef094ec
15286b9
bf1df59
7103b7d
3fedc71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import { SafeString } from '@glimmer/runtime'; | ||
// @ts-expect-error cannot import, but we only need the type... | ||
import type { SafeString } from '@glimmer/runtime'; | ||
import { htmlSafe } from '@ember/template'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why did it stop working? It seems to be here: https://github.com/glimmerjs/glimmer-vm/blob/v0.89.0/packages/%40glimmer/runtime/index.ts#L43 And I don't think we would want There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was the error:
|
||
import { emitContent } from '../-private/dsl'; | ||
|
||
|
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.
This kind of stuff should now work better, since
ElementNode
,MustachesStatement
andSubExpression
all have the samepath
property