diff --git a/test/tall/regression/0600/0624.unit b/test/tall/regression/0600/0624.unit new file mode 100644 index 00000000..fcad6189 --- /dev/null +++ b/test/tall/regression/0600/0624.unit @@ -0,0 +1,52 @@ +>>> +var x = [ + "long value that won't fit everywhere", + "long value that won't fit everywhere", + "long value that won't fit everywhere" +]; + +get y => [ + "long value that won't fit everywhere", + "long value that won't fit everywhere", + "long value that won't fit everywhere" + ]; +<<< +var x = [ + "long value that won't fit everywhere", + "long value that won't fit everywhere", + "long value that won't fit everywhere", +]; + +get y => [ + "long value that won't fit everywhere", + "long value that won't fit everywhere", + "long value that won't fit everywhere", +]; +>>> +class C { + @override + List get outputs => const [ + Source.pattern('{OUTPUT_DIR}/vm_snapshot_data'), + Source.pattern('{OUTPUT_DIR}/isolate_snapshot_data'), + Source.pattern('{OUTPUT_DIR}/kernel_blob.bin'), + ]; + + @override + List get depfiles => [ + 'flutter_assets.d', // Force split. + ]; +} +<<< +class C { + @override + List get outputs => const [ + Source.pattern('{OUTPUT_DIR}/vm_snapshot_data'), + Source.pattern('{OUTPUT_DIR}/isolate_snapshot_data'), + Source.pattern('{OUTPUT_DIR}/kernel_blob.bin'), + ]; + + @override + List get depfiles => [ + 'flutter_assets.d', // Force split. + ]; +} \ No newline at end of file