Konstantin Shcheglov
e4cae77332
Prepare to publish analyzer 6.3.0 and _fe_analyzer_shared 65.0.0
...
Change-Id: I0346ec75f93f55c6c9d6ebdcd34878aa2b414173
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/330026
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2023-10-11 14:44:31 +00:00
Konstantin Shcheglov
b9c1578737
Prepare to publish analyzer 6.2.0 and _fe_analyzer_shared 64.0.0
...
Change-Id: I02474a58dabd12ea9a4d5a0f2dca8d3de49f35f4
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/320680
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-08-14 20:32:30 +00:00
Konstantin Shcheglov
319eb24e1e
Prepare to publish analyzer 6.1.0 and _fe_analyzer_shared 63.0.0
...
Bug: https://github.com/dart-lang/sdk/issues/53084
Change-Id: Id3143e4d2ffd7795a5c36c69d1e6c62d4ee7c65c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/318460
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Phil Quitslund <pquitslund@google.com >
2023-08-04 22:34:59 +00:00
Jake Macdonald
91f389ed6a
Drop use of package:_dart_internal in _fe_analyzer_shared
...
This is largely a copy of https://github.com/leafpetersen/cast , with some extra magic.
Change-Id: Iff92ac9a57b1cfbaa67fe15647aabb8858442b60
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/316880
Reviewed-by: Leaf Petersen <leafp@google.com >
Commit-Queue: Jake Macdonald <jakemac@google.com >
2023-07-28 22:36:44 +00:00
Paul Berry
130d6199c3
Field promotion: make the core promotability algorithm sharable; fix bugs
...
In the following code, it's not safe for the field `C._f` to undergo
type promotion, because a variable with static type `C` might have
type `D` at runtime, in which case `C._f` will get dispatched to
`noSuchMethod`, which is not guaranteed to return a stable result.
class C {
final int? _f;
}
class D implements C {
noSuchMethod(_) => ...;
}
foo(C c) {
if (c._f != null) {
print(c._f + 1); // UNSAFE!
}
}
Therefore, in order to determine which fields are promotable, the
implementations need to analyze enough of the class hierarchy to
figure out which field accesses might get dispatched to
`noSuchMethod`.
Currently, the CFE does this by following its usual algorithm for
generating `noSuchMethod` forwarders before trying to determine which
fields are promotable. The analyzer, on the other hand, doesn't have
an algorithm for generating `noSuchMethod` forwarders (since it
doesn't implement execution semantics); so instead it has its own
logic to figure out when a `noSuchMethod` forwarder is needed for a
field, and disable promotion for that field.
But there's a chicken-and-egg problem in the CFE: the CFE needs to
determine which fields are promotable before doing top-level inference
(since the initializers of top-level fields might make use of field
promotion, affecting their inferred types--see #50522 ). But it doesn't
decide where `noSuchMethod` forwarders are needed until after
top-level inference (because the same phase that generates
`noSuchMethod` forwarders also generates forwarders that do runtime
covariant type-checking, and so it has to run after all top level
types have been inferred).
To fix the chicken-and-egg problem, I plan to rework the CFE so that
it uses the same algorithm as the analyzer to determine which fields
are promotable. This CL makes a first step towards that goal, by
reworking the analyzer's field promotability algorithm into a form
where it can be shared with the CFE, and moving it to
`package:_fe_analyzer_shared`. Since this required a fairly
substantial rewrite, I went ahead and fixed #52938 in the process.
Fixes #52938 .
Change-Id: I9e68f51b3ea9a967f55f15bdc445cc1c0efdabdd
Bug: https://github.com/dart-lang/sdk/issues/52938
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/313293
Reviewed-by: Johnni Winther <johnniwinther@google.com >
Reviewed-by: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Sigmund Cherem <sigmund@google.com >
Commit-Queue: Paul Berry <paulberry@google.com >
2023-07-18 18:54:26 +00:00
Nate Bosch
a4331b433a
Fix dependency on package:meta
...
A usage of `@mustBeOverridden` was added in
https://dart-review.googlesource.com/c/sdk/+/309460 . The API was added
in version `1.9.0` of `package:meta`.
R=jakemac@google.com
Bug: https://github.com/dart-lang/sdk/issues/52815
Change-Id: I6069b20d2ea6cfae6af4cb0af033ad9a07f48d0b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/311925
Reviewed-by: Jake Macdonald <jakemac@google.com >
Commit-Queue: Nate Bosch <nbosch@google.com >
2023-06-29 17:35:51 +00:00
Konstantin Shcheglov
5940badbd3
Prepare to publish analyzer 6.0.0 and _fe_analyzer_shared 62.0.0
...
Change-Id: Ic816540e8b052fdd1fd59f030c334c3bf56e79f9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/310961
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-06-22 19:00:56 +00:00
Jake Macdonald
4590fc83e7
Reland "Add wrappers for macro arguments to help with serialization."
...
The type arguments have to be explicitly given for collection types,
but this should be doable given they are all constants and only certain
types are allowed.
Change-Id: I2721f37d194d73de1df81302298101adeb87534c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/309460
Commit-Queue: Jake Macdonald <jakemac@google.com >
Reviewed-by: Bob Nystrom <rnystrom@google.com >
2023-06-16 14:02:05 +00:00
Ilya Yanok
396ed71267
Revert "Add wrappers for macro arguments to help with serialization."
...
This reverts commit ea7e014c3c .
Reason for revert: breaks Analyzer tests, CBuild regression.
Original change's description:
> Add wrappers for macro arguments to help with serialization.
>
> In particular this allows us to reproduce type arguments for collections in the
> macro expansion isolate.
>
> The type arguments have to be explicitly given for collection types,
> but this should be doable given they are all constants and only certain
> types are allowed.
>
> Bug: https://github.com/dart-lang/language/issues/2212
> Change-Id: I14a688ed294cf060c004849efa975b5bef053d5b
> Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/308202
> Reviewed-by: Bob Nystrom <rnystrom@google.com >
> Reviewed-by: Johnni Winther <johnniwinther@google.com >
> Commit-Queue: Jake Macdonald <jakemac@google.com >
> Reviewed-by: Konstantin Shcheglov <scheglov@google.com >
Bug: https://github.com/dart-lang/language/issues/2212
Change-Id: I402802c7a1c27f9aee3f23baef8c0deb71ec06e9
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/309284
Commit-Queue: Ilya Yanok <yanok@google.com >
Reviewed-by: Alexander Thomas <athom@google.com >
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com >
2023-06-14 15:34:37 +00:00
Jake Macdonald
ea7e014c3c
Add wrappers for macro arguments to help with serialization.
...
In particular this allows us to reproduce type arguments for collections in the
macro expansion isolate.
The type arguments have to be explicitly given for collection types,
but this should be doable given they are all constants and only certain
types are allowed.
Bug: https://github.com/dart-lang/language/issues/2212
Change-Id: I14a688ed294cf060c004849efa975b5bef053d5b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/308202
Reviewed-by: Bob Nystrom <rnystrom@google.com >
Reviewed-by: Johnni Winther <johnniwinther@google.com >
Commit-Queue: Jake Macdonald <jakemac@google.com >
Reviewed-by: Konstantin Shcheglov <scheglov@google.com >
2023-06-14 14:54:30 +00:00
Paul Berry
d5415d624e
Update _fe_analyzer_shared to require Dart SDK version 3.0.
...
Change-Id: Ifc267c3d610de25c524c1294e43218a973086ce9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/291141
Reviewed-by: Johnni Winther <johnniwinther@google.com >
Reviewed-by: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Jake Macdonald <jakemac@google.com >
Commit-Queue: Paul Berry <paulberry@google.com >
2023-05-24 14:30:47 +00:00
Konstantin Shcheglov
efe0ca193f
Prepare to publish analyzer 5.13.0 and _fe_analyzer_shared 61.0.0
...
Change-Id: Ic1402c8a003573a0861c9a907c0a14e9b95f4859
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/304561
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-05-19 21:11:29 +00:00
Konstantin Shcheglov
4a62426d1d
Prepare to publish analyzer 5.12.0 and _fe_analyzer_shared 60.0.0
...
Change-Id: Iea968efec63034ed3830dbc46ad0a29158dd9fcb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/302363
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2023-05-09 23:35:48 +00:00
Konstantin Shcheglov
82cffbb38b
Prepare to publish analyzer 5.11.0 and _fe_analyzer_shared 59.0.0
...
Change-Id: I1d841f7c12698e56bd99ed109e58795172499ed1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/297842
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2023-04-24 22:08:12 +00:00
Paul Berry
b4fa47f654
Add dependency overrides for pkg/_fe_analyzer_shared
...
These dependency overrides prevent pub from getting confused about the
fact that our SDK development is in a mono-repo; that in turn allows
unit tests to be run from inside vscode using the standard test
integration.
Change-Id: I952010c8adfe068912a15b56a53cb148fa2fccf5
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/294640
Reviewed-by: Johnni Winther <johnniwinther@google.com >
Commit-Queue: Paul Berry <paulberry@google.com >
2023-04-12 12:23:00 +00:00
Konstantin Shcheglov
6ef15e48bb
Prepare to publish analyzer 5.10.0 and _fe_analyzer_shared 58.0.0
...
Change-Id: Ia298440a6d4a07fa777fe182c64cf0bb830d31ed
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/290910
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2023-03-24 02:39:22 +00:00
Konstantin Shcheglov
62cfd07b52
Prepare to publish analyzer 5.9.0 and _fe_analyzer_shared 57.0.0
...
Change-Id: Id583c0f5e0a9c2afb5af719a4d6964d8bdfd2346
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/290342
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-03-22 00:36:06 +00:00
Konstantin Shcheglov
771042f5ca
Prepare to publish analyzer 5.8.0 and _fe_analyzer_shared 56.0.0
...
Change-Id: I09c65e9897fb8fe77c668fac8044da9b73b0f41a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/289441
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-03-17 16:36:59 +00:00
Konstantin Shcheglov
bdd9535b4e
Prepare to publish analyzer 5.7.1 and _fe_analyzer_shared 55.0.0
...
Change-Id: Ie9c95abba680a8d564f8577a8bf91604ec8d5022
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/286341
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-03-02 18:22:31 +00:00
Konstantin Shcheglov
479a98f5b5
Prepare to publish analyzer 5.6.0 and _fe_analyzer_shared 54.0.0
...
Change-Id: I6b36a25adfa78cb8d0534afa006daa66a6a8ed78
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/284380
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-02-21 21:26:42 +00:00
Konstantin Shcheglov
4ddfa7bac5
Prepare to publish analyzer 5.5.0 and _fe_analyzer_shared 53.0.0
...
Change-Id: If616813aeab905026f936015d86560388aa80044
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/283101
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-02-14 18:41:48 +00:00
Konstantin Shcheglov
79e6beaf7d
Prepare to publish analyzer 5.4.0 and _fe_analyzer_shared 52.0.0
...
Change-Id: Iafb9a1f8d5ce9f8502795192c9cbc6b26cb337c0
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/278300
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2023-01-04 19:33:48 +00:00
Konstantin Shcheglov
bd30de18ba
Prepare to publish analyzer 5.3.0 and _fe_analyzer_shared 51.0.0
...
Bug: https://github.com/dart-lang/sdk/issues/50637
Change-Id: I0ce445af106168fd4af6529e2c55deceb954e559
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/274086
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2022-12-07 22:18:37 +00:00
Konstantin Shcheglov
f282fcfa35
Prepare to publish analyzer 5.2.0 and _fe_analyzer_shared 50.0.0
...
Change-Id: Iebf909af9e62322d898d6db79ee5fa6f8bfe3899
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/265561
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2022-10-25 21:03:37 +00:00
Konstantin Shcheglov
5a812f423d
Prepare to publish analyzer 5.1.0 and _fe_analyzer_shared 49.0.0
...
Change-Id: I64bbfb67d39a86cf4c3b00067f78c992d0fe2502
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/261161
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2022-09-26 18:14:58 +00:00
Konstantin Shcheglov
daada3e35d
Prepare to publish analyzer 5.0.0 and _fe_analyzer_shared 48.0.0
...
Change-Id: Ib9f0cab59a6791ed077ed78395cc24d1bf3d482c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/258860
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2022-09-12 19:37:09 +00:00
Konstantin Shcheglov
f442c98a3f
Prepare to publish analyzer 4.7.0 and _fe_analyzer_shared 47.0.0
...
Change-Id: I1a2b727e5b49fe4386e12e4957e39c55421b1ff2
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/257280
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Phil Quitslund <pquitslund@google.com >
2022-09-01 17:31:04 +00:00
Konstantin Shcheglov
5b3a78b675
Prepare to publish analyzer 4.6.0 and _fe_analyzer_shared 46.0.0
...
Change-Id: I3562b5e3ce0c7f744d4bf80a71adf8e97b9b57b7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/254740
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2022-08-11 23:31:18 +00:00
Konstantin Shcheglov
a1b90438e8
Prepare to publish analyzer 4.5.0 and _fe_analyzer_shared 45.0.0
...
Change-Id: I0ab45251f8a7e87b70ce6dfd1f964da7d2cc6e9c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/254282
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-08-09 22:42:26 +00:00
Konstantin Shcheglov
a34e93f9d3
Prepare to publish analyzer 4.4.0 and _fe_analyzer_shared 44.0.0
...
Change-Id: I81a6366092ede393546212cfef1746fa06d1aed6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/253709
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2022-08-05 21:27:37 +00:00
Konstantin Shcheglov
ea820da673
Prepare to publish analyzer 4.3.1 and _fe_analyzer_shared 43.0.0
...
Change-Id: I8dba10b407d00abae1ed05341c12470dba136753
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/252702
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2022-07-25 22:17:15 +00:00
Konstantin Shcheglov
10707a696c
Prepare to publish analyzer 4.3.0 and _fe_analyzer_shared 42.0.0
...
Change-Id: I59df8579a9e0dac289c25f36330a1d64a9280862
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/252521
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2022-07-22 16:35:16 +00:00
Konstantin Shcheglov
a602f74ac0
Prepare to publish analyzer 4.2.0 and _fe_analyzer_shared 41.0.0
...
Change-Id: I9e49e86e6e5187a055305399193e9e83220e673b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/250221
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-06-29 20:54:25 +00:00
Paul Berry
1b31046363
Change SDK constraint for _fe_analyzer_shared to 2.17.0.
...
This allows the _fe_analyzer_shared package to make use of the new
"super parameters" feature.
Change-Id: Iebea526cd91563a0ba603796d2df8af633adfaae
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/250180
Commit-Queue: Paul Berry <paulberry@google.com >
Reviewed-by: Konstantin Shcheglov <scheglov@google.com >
2022-06-29 19:31:55 +00:00
Devon Carew
f7c46f145c
[pkg] prefer 'any' deps for package dev dependencies
...
Tested: CI validation
Change-Id: If65cc156130a65ffe00c6f1660ac320e2921afae
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/246053
Commit-Queue: Devon Carew <devoncarew@google.com >
Reviewed-by: Nate Bosch <nbosch@google.com >
2022-05-27 01:34:59 +00:00
Konstantin Shcheglov
53944e1c64
Prepare to publish analyzer 4.1.0 and _fe_analyzer_shared 40.0.0
...
Change-Id: I74097921c0b2ba897308d5e014bb06db1a132722
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/244962
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2022-05-17 05:55:19 +00:00
Devon Carew
2a20d4be24
[pkg] ensure each publishable package has a repository pubspec field
...
Change-Id: I06c0d10c87c3f329098352a7abe9ef9fa0b1532e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/241504
Reviewed-by: Kevin Moore <kevmoo@google.com >
Reviewed-by: Nate Bosch <nbosch@google.com >
Commit-Queue: Devon Carew <devoncarew@google.com >
2022-04-19 22:13:51 +00:00
Konstantin Shcheglov
3514a3ed93
Prepare to publish analyzer 4.0.0 and _fe_analyzer_shared 39.0.0
...
Change-Id: I5d9726601653b1ff5e16193335e443006df891c2
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/241141
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-04-13 19:36:53 +00:00
Konstantin Shcheglov
cbcbf898cf
Prepare to publish analyzer 3.4.1 and _fe_analyzer_shared 38.0.0
...
Bug: https://github.com/dart-lang/sdk/issues/48658
Change-Id: I1d3d531cf3550a657a1cdd9d7a29467e4c92df0f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/238620
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-03-24 17:44:29 +00:00
Konstantin Shcheglov
26aa3273ea
Prepare to publish analyzer 3.4.0 and _fe_analyzer_shared 37.0.0
...
Change-Id: Id361cfa1068d1c85eee46c6f581815716542d75b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/238000
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-03-23 17:17:17 +00:00
Konstantin Shcheglov
8bdd16be7a
Prepare to publish analyzer 3.3.1 and _fe_analyzer_shared 36.0.0
...
Change-Id: I703c1de5d055fd0c53ac31f075ca2f2c4bfcbc95
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/234322
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-02-24 18:39:43 +00:00
Konstantin Shcheglov
91d10d3701
Prepare to publish analyzer 3.3.0 and _fe_analyzer_shared 35.0.0
...
Change-Id: I148044fd8e70789ced1a78c0881c5d78491adcad
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/234115
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-02-24 00:38:43 +00:00
Konstantin Shcheglov
75247601ef
Prepare to publish analyzer 3.2.0 and _fe_analyzer_shared 34.0.0
...
Change-Id: Iceaeeb8e12e5de779f87b6c8b8a1ef56fbfaefd6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/228981
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-01-19 23:00:36 +00:00
Konstantin Shcheglov
878ce55edb
Prepare to publish analyzer 3.1.0 and _fe_analyzer_shared 33.0.0
...
Change-Id: Iebc52d41b1b5c4ff36fc356569020f13d43ff53e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/227860
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2022-01-12 20:24:32 +00:00
Konstantin Shcheglov
214668c3c5
Prepare to publish analyzer 3.0.0 and _fe_analyzer_shared 32.0.0
...
Change-Id: Ief9890c035c9b8784741be297169db9cad956791
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/223640
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
2021-12-13 21:44:22 +00:00
Konstantin Shcheglov
0eb9c34645
Prepare to publish analyzer 2.8.0 and _fe_analyzer_shared 31.0.0
...
Change-Id: I8abdd6050532b37e3c4d3c187fee61ff9eab8a3a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/221541
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2021-11-29 20:27:44 +00:00
Konstantin Shcheglov
b3a1e96dba
Prepare to publish analyzer 2.7.0 and _fe_analyzer_shared 30.0.0
...
Change-Id: I49b313dcdef2349b811bc853bd54cc57db78379e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/217444
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2021-10-22 01:05:56 +00:00
Konstantin Shcheglov
16e3734b14
Prepare to publish analyzer 2.6.0 and _fe_analyzer_shared 29.0.0
...
Change-Id: Ia7aa32d010597251dfc133fe6eac40ce149a48a5
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/216360
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2021-10-12 20:59:45 +00:00
Konstantin Shcheglov
34b2bcb50d
Prepare to publish analyzer 2.5.0 and _fe_analyzer_shared 28.0.0
...
Change-Id: I72d6b6b6634a949c1b1fb5ff5aa3dfa51ad835e9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/215644
Reviewed-by: Phil Quitslund <pquitslund@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
2021-10-05 22:05:32 +00:00
Konstantin Shcheglov
4f80522fe4
Prepare to publish analyzer 2.4.0 and _fe_analyzer_shared 27.0.0
...
Change-Id: I48d0f8fcd4f966c9c55542ae9d239095b81ea45c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/215007
Commit-Queue: Konstantin Shcheglov <scheglov@google.com >
Reviewed-by: Samuel Rawlins <srawlins@google.com >
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com >
2021-10-01 16:45:23 +00:00