Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1359)

Unified Diff: pkg/analysis_server/lib/src/status/get_handler.dart

Issue 2577943003: Use AnalysisOptions.signature as a way to check compatibility. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/analysis/driver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/status/get_handler.dart
diff --git a/pkg/analysis_server/lib/src/status/get_handler.dart b/pkg/analysis_server/lib/src/status/get_handler.dart
index d6ed6eb611db9cb741c4771156daa6f3eee62515..17d62291a6073bf6cfce5e8935eeded7408d0fae 100644
--- a/pkg/analysis_server/lib/src/status/get_handler.dart
+++ b/pkg/analysis_server/lib/src/status/get_handler.dart
@@ -421,7 +421,7 @@ class GetHandler implements AbstractGetHandler {
*/
String _encodeSdkDescriptor(SdkDescription descriptor) {
StringBuffer buffer = new StringBuffer();
- buffer.write(descriptor.options.encodeCrossContextOptions().join(','));
+ buffer.write(descriptor.options.signature.join(','));
for (String path in descriptor.paths) {
buffer.write('+');
buffer.write(path);
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/analysis/driver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698