[BUGFIX] Invoke argument-less helpers in attribute position in strict mode - #21516
Draft
NullVoxPopuli wants to merge 1 commit into
Draft
[BUGFIX] Invoke argument-less helpers in attribute position in strict mode#21516NullVoxPopuli wants to merge 1 commit into
NullVoxPopuli wants to merge 1 commit into
Conversation
Contributor
📊 Size reportTarball size — dist/dev 0.06%↑
dist/prod 0.06%↑
smoke-tests/v2-app-template/dist 0.05%↑
smoke-tests/v2-app-hello-world-template/dist 0.1%↑
🤖 This report was automatically generated by wyvox/pkg-size |
There was a problem hiding this comment.
Pull request overview
This PR fixes a strict-mode inconsistency where argument-less helpers (and plain functions with helper managers) used in attribute value / attribute interpolation were not implicitly invoked, causing stringification (e.g. Function.prototype.toString) instead of producing the helper’s return value.
Changes:
- Introduces
DynamicAttrValue()to compile strict-mode attribute-position expressions, invoking bare lexical helpers/functions (and rejecting components) while preserving value semantics otherwise. - Routes dynamic element attributes, component invocation attributes (
...attributespassthrough), andConcatparts throughDynamicAttrValue()instead of the genericexpr()path. - Adds a new strict-mode integration test suite covering helper/function invocation in attribute position (including interpolation, trusting attrs, updates, and error cases).
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| packages/@glimmer/opcode-compiler/lib/syntax/statements.ts | Uses DynamicAttrValue() for dynamic attribute compilation paths (plain + trusting, element + component attrs). |
| packages/@glimmer/opcode-compiler/lib/syntax/expressions.ts | Compiles Concat parts via DynamicAttrValue() to ensure attribute interpolations invoke bare lexical helpers/functions correctly. |
| packages/@glimmer/opcode-compiler/lib/opcode-builder/helpers/vm.ts | Adds DynamicAttrValue() helper implementing compile-time OptionalComponentOrHelper resolution for bare lexical symbols in attribute-position. |
| packages/@glimmer-workspace/integration-tests/test/strict-mode-test.ts | Adds strict mode: attribute position test suite validating the intended behavior and guarding regressions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Author
|
That's a summary, not a review. Silly copilot |
driesdl
approved these changes
Jul 24, 2026
Member
|
Making it a draft since it needs an RFC |
kategengler
marked this pull request as draft
August 11, 2026 16:12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #21040
Supersedes #21508
Blocked on:
Needs RFClabel, for lack of a better label -- though I argue this one particular feature does not need an RFCContext: