Skip to content

Commit

Permalink
Version 3.5.0-159.0.dev
Browse files Browse the repository at this point in the history
Merge 38d7d5d into dev
  • Loading branch information
Dart CI committed May 15, 2024
2 parents f773d45 + 38d7d5d commit a9651de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
9 changes: 0 additions & 9 deletions pkg/analyzer/lib/src/lint/linter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -559,15 +559,6 @@ abstract class NodeLintRule {
void registerNodeProcessors(NodeLintRegistry registry, LinterContext context);
}

/// [LintRule]s that implement this interface want to process only some types
/// of AST nodes, and will register their processors in the registry.
///
/// This class exists solely to allow a smoother transition from analyzer
/// version 0.33.*. It will be removed in a future analyzer release, so please
/// use [NodeLintRule] instead.
@deprecated
abstract class NodeLintRuleWithContext extends NodeLintRule {}

class PrintingReporter implements Reporter {
final Printer _print;

Expand Down
4 changes: 2 additions & 2 deletions runtime/vm/compiler/backend/linearscan.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2985,8 +2985,8 @@ static void EmitMoveOnEdge(BlockEntryInstr* succ,
BlockEntryInstr* pred,
const MoveOperands& move) {
Instruction* last = pred->last_instruction();
if ((last->SuccessorCount() == 1) && !pred->IsGraphEntry()) {
ASSERT(last->IsGoto());
if (last->IsGoto() && !pred->IsGraphEntry()) {
ASSERT(last->SuccessorCount() == 1);
last->AsGoto()->GetParallelMove()->AddMove(move.dest(), move.src());
} else {
succ->GetParallelMove()->AddMove(move.dest(), move.src());
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 158
PRERELEASE 159
PRERELEASE_PATCH 0

0 comments on commit a9651de

Please sign in to comment.