| commit | f445d60daea9d2af2a8ff5d6c212a414d579a9ec | [log] [tgz] |
|---|---|---|
| author | Moritz <mosum@google.com> | Fri May 17 18:14:09 2024 +0200 |
| committer | Moritz <mosum@google.com> | Fri May 17 18:14:09 2024 +0200 |
| tree | 7ddb7dbcf606cfe0c7cf7ab4e83119c39592f56c | |
| parent | e416d45f6b41ad9289f6686ecd0c3336623dfaa7 [diff] |
switch name
diff --git a/pkgs/native_assets_builder/test_data/drop_dylib_link/bin/drop_dylib_link.dart b/pkgs/native_assets_builder/test_data/drop_dylib_link/bin/drop_dylib_link.dart index 8f5e47b..87eda6b 100644 --- a/pkgs/native_assets_builder/test_data/drop_dylib_link/bin/drop_dylib_link.dart +++ b/pkgs/native_assets_builder/test_data/drop_dylib_link/bin/drop_dylib_link.dart
@@ -4,12 +4,12 @@ import 'package:drop_dylib_link/drop_dylib_link.dart'; -const DEBUG = false; +const debug = false; void main(List<String> arguments) { - if (!DEBUG) { + if (!debug) { print('Hello world: ${MyMath.add(3, 4)}!'); - } else if (DEBUG) { + } else if (debug) { print('Hello world: ${MyMath.multiply(3, 4)}!'); } }