[ dartfuzz ] Regenerate type table now that TypeError does not implement AssertionError

Change-Id: I0863c47b1285b90da2f91e66b444d4b6b09727b5
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/137042
Reviewed-by: Ryan Macnak <rmacnak@google.com>
Commit-Queue: Ben Konyi <bkonyi@google.com>
This commit is contained in:
Ben Konyi 2020-02-24 21:49:08 +00:00 committed by commit-bot@chromium.org
parent b5a08c916c
commit 7d7f7b5692
3 changed files with 2 additions and 18 deletions

View file

@ -14,7 +14,7 @@ import 'dartfuzz_type_table.dart';
// Version of DartFuzz. Increase this each time changes are made
// to preserve the property that a given version of DartFuzz yields
// the same fuzzed program for a deterministic random seed.
const String version = '1.87';
const String version = '1.88';
// Restriction on statements and expressions.
const int stmtDepth = 1;

View file

@ -43442,10 +43442,6 @@ class DartType {
INDEXERROR,
RANGEERROR,
},
ASSERTIONERROR: {
ASSERTIONERROR,
TYPEERROR,
},
BIDIRECTIONALITERATOR_INT: {
RUNEITERATOR,
},
@ -113524,10 +113520,6 @@ class DartTypeNoFp extends DartType {
DartType.INDEXERROR,
DartType.RANGEERROR,
},
DartType.ASSERTIONERROR: {
DartType.ASSERTIONERROR,
DartType.TYPEERROR,
},
DartType.BIDIRECTIONALITERATOR_INT: {
DartType.RUNEITERATOR,
},
@ -138770,10 +138762,6 @@ class DartTypeFlatTp extends DartType {
DartType.INDEXERROR,
DartType.RANGEERROR,
},
DartType.ASSERTIONERROR: {
DartType.ASSERTIONERROR,
DartType.TYPEERROR,
},
DartType.BIDIRECTIONALITERATOR_INT: {
DartType.RUNEITERATOR,
},
@ -141390,10 +141378,6 @@ class DartTypeNoFpFlatTp extends DartType {
DartType.INDEXERROR,
DartType.RANGEERROR,
},
DartType.ASSERTIONERROR: {
DartType.ASSERTIONERROR,
DartType.TYPEERROR,
},
DartType.BIDIRECTIONALITERATOR_INT: {
DartType.RUNEITERATOR,
},

View file

@ -30,7 +30,7 @@ class GenUtil {
if (packageRoot == null) {
throw StateError('No environment variable DART_TOP');
}
final sdkPath = '$packageRoot/tools/sdks/dart-sdk';
final sdkPath = '$packageRoot/sdk';
// This does most of the hard work of getting the analyzer configured
// correctly. Typically the included paths are the files and directories