File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import 'dartfuzz_ffiapi.dart';
1414// Version of DartFuzz. Increase this each time changes are made
1515// to preserve the property that a given version of DartFuzz yields
1616// the same fuzzed program for a deterministic random seed.
17- const String version = '1.50 ' ;
17+ const String version = '1.51 ' ;
1818
1919// Restriction on statements and expressions.
2020const int stmtDepth = 1 ;
@@ -23,7 +23,6 @@ const int numStatements = 2;
2323const int numGlobalVars = 4 ;
2424const int numLocalVars = 4 ;
2525const int numGlobalMethods = 4 ;
26- const int numClassMethods = 3 ;
2726const int numMethodParams = 4 ;
2827const int numClasses = 4 ;
2928
@@ -135,6 +134,7 @@ class DartFuzz {
135134 globalMethods =
136135 fillTypes2 (limit2: numGlobalMethods, limit1: numMethodParams);
137136 classFields = fillTypes2 (limit2: numClasses, limit1: numLocalVars);
137+ final int numClassMethods = 1 + numClasses - classFields.length;
138138 classMethods = fillTypes3 (classFields.length,
139139 limit2: numClassMethods, limit1: numMethodParams);
140140
You can’t perform that action at this time.
0 commit comments