-
Notifications
You must be signed in to change notification settings - Fork 211
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
[WIP] Add macro e2e test #3650
base: master
Are you sure you want to change the base?
[WIP] Add macro e2e test #3650
Conversation
I added some logging to the analyzer, it saw that we don't pass a With this fixed (I will send the CL), we get a little further: [INFO] Running build...Unhandled exception:
'file:///_test/lib/macros/debug_to_string.dart.macro': error: /_test/lib/macros/debug_to_string.dart.macro:14:9: Error: Undefined name 'MacroExpansionClient'.
await MacroExpansionClient.start(
^^^^^^^^^^^^^^^^^^^^
#0 _delayEntrypointInvocation.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:293:33)
#1 _RawReceivePort._handleMessage (dart:isolate-patch/isolate_patch.dart:184:12) I suspect that we need to make portions of |
dart-lang/build#3650 Change-Id: I9437205dd42335fdba8e59736ef4d6ba557b9aab Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/352997 Reviewed-by: Brian Wilkerson <[email protected]> Commit-Queue: Konstantin Shcheglov <[email protected]>
Yeah, we only make available to the analyzer generally the transitive imports of a given library. But when running macros the analyzer needs to create the macro bootstrap program and that imports stuff from _fe_analyzer_shared. Once we move all this to package:macros, that should make it easier, I don't really want to hardcode stuff in today which I know will be moved soon :). But I might play around with it just to see if things work. |
Nice, I did get things working here. I had to also explicitly make the package config file available to the in memory resource provider (and make it also match up with the one the analyzer is given, which is different from the one on disk). Would it possibly make sense for the analyzer to pass a package config more explicitly, matching its |
Ah, yes. CFE reads
I don't know. To answer this I need to understand better if we need two separate sets of libraries / packages to write macros, and to compile macro into kernels. |
It should always use the same package config to compile the macro as the root application. I can't think of a situation in which that wouldn't be the case. |
So, no separate special package config? Then could we expose / copy the existing AFAIK we get |
It is special in that it is different from the one the user has on disk (in build_runner). We create consistent, but fake paths for all the assets (consistent across environments). So we can't just copy the file, but within a single analysis context there should only be one consistent package resolution. My existing prototype just uses the Packages instance to create the package config. |
Trying this PR in the mockito repo, I got a macro build error related to 'asset' URIs
which went away if I move |
Ah interesting, that does make sense, and something probably does need to be updated. Probably those URIs need to be translated to a "file" URI before sending them to the CFE. Or, we could treat |
I am starting to test out macros in build_runner, compiler integrations are known to need work but I am confused by the analyzer stuff in particular here. I did expect it to work correctly (but inefficiently) and be able to run the macros, however they never seem to be applied.
Specifically in this branch, if you run:
cd _test
dart pub upgrade
dart run build_runner build --enable-experiment=macros --build-filter=web/macros/main.hasDebugToString
And then open up
.dart_tool/build/generated/_test/web/macros.hasDebugToString
I would expect to seetrue
, indicating the macro had ran. But I getfalse
, indicating it never ran. I am not sure the best way to start debugging that?@scheglov do I need to toggle anything special to enable macros in the analysis context?
cc @davidmorgan