Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
# TODO(srawlins): Include dev when using analyzer that understands
# language version 3.3.
sdk: [stable]
sdk: [dev, stable]
job: [main, flutter, packages, sdk-docs]
include:
- os: macos-latest
# TODO(srawlins): Change back to dev when using analyzer that
# understands language version 3.3.
sdk: stable
sdk: dev
job: main
- os: windows-latest
# TODO(srawlins): Change back to dev when using analyzer that
# understands language version 3.3.
sdk: stable
sdk: dev
job: main
exclude:
# Do not try to run flutter against the "stable" sdk,
Expand Down
12 changes: 11 additions & 1 deletion lib/src/generator/templates.runtime_renderers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16675,7 +16675,8 @@ const _invisibleGetters = {
'periodOffset',
'redirectedConstructor',
'returnType',
'runtimeType'
'runtimeType',
'superConstructor'
},
'ContainerModifier': {
'displayName',
Expand Down Expand Up @@ -16796,6 +16797,7 @@ const _invisibleGetters = {
'hasOptionalTypeArgs',
'hasOverride',
'hasProtected',
'hasRedeclare',
'hasReopen',
'hasRequired',
'hasSealed',
Expand Down Expand Up @@ -16885,6 +16887,7 @@ const _invisibleGetters = {
'hasOptionalTypeArgs',
'hasOverride',
'hasProtected',
'hasRedeclare',
'hasReopen',
'hasRequired',
'hasSealed',
Expand Down Expand Up @@ -16949,11 +16952,14 @@ const _invisibleGetters = {
'augmentationTarget',
'augmented',
'hashCode',
'primaryConstructor',
'representation',
'runtimeType',
'typeErasure'
},
'FieldElement': {
'augmentation',
'augmentationTarget',
'declaration',
'hashCode',
'isAbstract',
Expand Down Expand Up @@ -17150,6 +17156,7 @@ const _invisibleGetters = {
'hasOptionalTypeArgs',
'hasOverride',
'hasProtected',
'hasRedeclare',
'hasReopen',
'hasRequired',
'hasSealed',
Expand Down Expand Up @@ -17312,6 +17319,7 @@ const _invisibleGetters = {
'hasOptionalTypeArgs',
'hasOverride',
'hasProtected',
'hasRedeclare',
'hasReopen',
'hasRequired',
'hasSealed',
Expand Down Expand Up @@ -17379,6 +17387,8 @@ const _invisibleGetters = {
'useBaseHref'
},
'TopLevelVariableElement': {
'augmentation',
'augmentationTarget',
'declaration',
'hashCode',
'isExternal',
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
sdk: ^3.0.0

dependencies:
analyzer: ^6.2.0
analyzer: ^6.3.0
args: ^2.4.1
cli_util: ^0.4.0
collection: ^1.17.0
Expand Down