Skip to content

Commit

Permalink
hide Symbol exported from dart:_internal (flutter#3861)
Browse files Browse the repository at this point in the history
Both dart:core and dart:_internal export Symbol. 

This is silently ignored by the VM but some tools (e.g. fasta) report a warning when processing dart:ui sources.

See dart-lang/sdk#30127 for more details.
  • Loading branch information
mraleph authored and Hixie committed Aug 2, 2017
1 parent 1de56a3 commit c51b3ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/// text, layout, and rendering subsystems.
library dart.ui;

import 'dart:_internal';
import 'dart:_internal' hide Symbol;
import 'dart:async';
import 'dart:convert';
import 'dart:developer' as developer;
Expand Down

0 comments on commit c51b3ca

Please sign in to comment.