Skip to content

Commit

Permalink
Version 3.5.0-156.0.dev
Browse files Browse the repository at this point in the history
Merge de68b22 into dev
  • Loading branch information
Dart CI committed May 15, 2024
2 parents 1eec9de + de68b22 commit 7d9de0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/third-party-deps-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
contents: read
steps:
- name: "Checkout code"
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
with:
persist-credentials: false
- name: "setup python"
Expand Down
7 changes: 1 addition & 6 deletions pkg/analyzer/lib/src/lint/linter_visitor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -701,8 +701,8 @@ class LinterVisitor implements AstVisitor<void> {
node.visitChildren(this);
}

@Deprecated('Use visitMixinOnClause() instead')
@override
// ignore: deprecated_member_use_from_same_package
void visitOnClause(OnClause node) {
_runSubscriptions(node, registry._forMixinOnClause);
node.visitChildren(this);
Expand Down Expand Up @@ -1815,11 +1815,6 @@ class NodeLintRegistry {
_forObjectPattern.add(_Subscription(linter, visitor, _getTimer(linter)));
}

@Deprecated('Use addMixinOnClause() instead')
void addOnClause(LintRule linter, AstVisitor visitor) {
addMixinOnClause(linter, visitor);
}

void addParenthesizedExpression(LintRule linter, AstVisitor visitor) {
_forParenthesizedExpression
.add(_Subscription(linter, visitor, _getTimer(linter)));
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 5
PATCH 0
PRERELEASE 155
PRERELEASE 156
PRERELEASE_PATCH 0

0 comments on commit 7d9de0c

Please sign in to comment.