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';
14
14
// Version of DartFuzz. Increase this each time changes are made
15
15
// to preserve the property that a given version of DartFuzz yields
16
16
// the same fuzzed program for a deterministic random seed.
17
- const String version = '1.50 ' ;
17
+ const String version = '1.51 ' ;
18
18
19
19
// Restriction on statements and expressions.
20
20
const int stmtDepth = 1 ;
@@ -23,7 +23,6 @@ const int numStatements = 2;
23
23
const int numGlobalVars = 4 ;
24
24
const int numLocalVars = 4 ;
25
25
const int numGlobalMethods = 4 ;
26
- const int numClassMethods = 3 ;
27
26
const int numMethodParams = 4 ;
28
27
const int numClasses = 4 ;
29
28
@@ -135,6 +134,7 @@ class DartFuzz {
135
134
globalMethods =
136
135
fillTypes2 (limit2: numGlobalMethods, limit1: numMethodParams);
137
136
classFields = fillTypes2 (limit2: numClasses, limit1: numLocalVars);
137
+ final int numClassMethods = 1 + numClasses - classFields.length;
138
138
classMethods = fillTypes3 (classFields.length,
139
139
limit2: numClassMethods, limit1: numMethodParams);
140
140
You can’t perform that action at this time.
0 commit comments