Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions packages/flutter/lib/src/foundation/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,4 @@ const bool kDebugMode = !kReleaseMode && !kProfileMode;
const double precisionErrorTolerance = 1e-10;

/// A constant that is true if the application was compiled to run on the web.
///
/// This implementation takes advantage of the fact that JavaScript does not
/// support integers. In this environment, Dart's doubles and ints are
/// backed by the same kind of object. Thus a double `0.0` is identical
/// to an integer `0`. This is not true for Dart code running in AOT or on the
/// VM.
const bool kIsWeb = identical(0, 0.0);
const bool kIsWeb = bool.fromEnvironment('dart.library.js_util');
4 changes: 2 additions & 2 deletions packages/flutter/lib/src/services/platform_channel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'dart:developer';
import 'package:flutter/foundation.dart';

import '_background_isolate_binary_messenger_io.dart'
if (dart.library.html) '_background_isolate_binary_messenger_web.dart';
if (dart.library.js_util) '_background_isolate_binary_messenger_web.dart';

import 'binary_messenger.dart';
import 'binding.dart';
Expand All @@ -17,7 +17,7 @@ import 'message_codec.dart';
import 'message_codecs.dart';

export '_background_isolate_binary_messenger_io.dart'
if (dart.library.html) '_background_isolate_binary_messenger_web.dart';
if (dart.library.js_util) '_background_isolate_binary_messenger_web.dart';

export 'binary_messenger.dart' show BinaryMessenger;
export 'binding.dart' show RootIsolateToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

export '_platform_selectable_region_context_menu_io.dart' if(dart.library.html) '_platform_selectable_region_context_menu_web.dart';
export '_platform_selectable_region_context_menu_io.dart'
if (dart.library.js_util) '_platform_selectable_region_context_menu_web.dart';
2 changes: 1 addition & 1 deletion packages/flutter/test/dart/browser_environment_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'package:flutter_test/flutter_test.dart';
// Originally here: https://github.com/flutter/engine/pull/28808
void main() {
test('Web library environment define exists', () {
expect(const bool.fromEnvironment('dart.library.html'), isTrue);
expect(const bool.fromEnvironment('dart.library.js_util'), isTrue);
expect(const bool.fromEnvironment('dart.library.someFooLibrary'), isFalse);
});
}
2 changes: 1 addition & 1 deletion packages/flutter/test/painting/network_image_web_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// found in the LICENSE file.

import '_network_image_web_test_io.dart'
if (dart.library.html) '_network_image_test_web.dart';
if (dart.library.js_util) '_network_image_test_web.dart';

void main() {
runTests();
Expand Down