-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework the backing machinery for System.getProperty to utilize our ow…
…n registry The existing system is brittle properties are read as global symbols when uncompiled, but as `goog.define` flags when compiled. This is error-prone and there's no clear linkage between the two. To replace it, system properties now need to be explicitly registered. For now we'll only be supporting registering properties that come from a `goog.define` flag. For backwards compatibility we'll fallback to `goog.getObjectByName` if a property is not registered, but we will make this an error in the future. PiperOrigin-RevId: 689188398
- Loading branch information
1 parent
1d230d1
commit 7a3f585
Showing
7 changed files
with
94 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...oogle/j2cl/junit/integration/stacktrace/data/KotlinThrowsInJsFunction.stacktrace_j2cl.txt
This file contains 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
2 changes: 1 addition & 1 deletion
2
...l/junit/integration/stacktrace/data/KotlinThrowsInJsFunction.stacktrace_j2cl_compiled.txt
This file contains 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
2 changes: 1 addition & 1 deletion
2
.../com/google/j2cl/junit/integration/stacktrace/data/ThrowsInJsFunction.stacktrace_j2cl.txt
This file contains 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
2 changes: 1 addition & 1 deletion
2
...le/j2cl/junit/integration/stacktrace/data/ThrowsInJsFunction.stacktrace_j2cl_compiled.txt
This file contains 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