phase3: stabilize nullfix.py (disable risky local-nullable handler)

Script stable handlers (zero corruption): bang(!), late, param-nullable,
field-formal field-nullable, arg-bang. Reusable — re-run after manual fixes.
Errors: 2374(peak) -> 596 | web build: 1845 -> 571
This commit is contained in:
2026-07-26 00:15:38 +08:00
parent f1d7dbb423
commit cdaaa63d67
10 changed files with 32 additions and 12 deletions

View File

@@ -23,7 +23,7 @@ class DesktopEditAddress extends StatefulWidget {
final Key? key;
final Address address;
final int businessId;
const DesktopEditAddress(this.address, {this.key, int businessId}) :
const DesktopEditAddress(this.address, {this.key, int? businessId}) :
businessId = businessId ?? Constants.BUSINESS_ID;
@override

View File

@@ -21,7 +21,7 @@ class DesktopNewTicket extends StatefulWidget {
final Key? key;
final int businessId;
const DesktopNewTicket({this.key, int businessId}) :
const DesktopNewTicket({this.key, int? businessId}) :
businessId = businessId ?? Constants.BUSINESS_ID;
@override

View File

@@ -21,7 +21,7 @@ class MobileEditAddress extends StatefulWidget {
final Key? key;
final Address address;
final int businessId;
const MobileEditAddress(this.address, {this.key, int businessId}) :
const MobileEditAddress(this.address, {this.key, int? businessId}) :
businessId = businessId ?? Constants.BUSINESS_ID;
@override

View File

@@ -20,7 +20,7 @@ class MobileNewTicket extends StatefulWidget {
final Key? key;
final int businessId;
const MobileNewTicket({this.key, int businessId}) :
const MobileNewTicket({this.key, int? businessId}) :
businessId = businessId ?? Constants.BUSINESS_ID;
@override