Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(760)

Unified Diff: pkg/intl/test/bidi_format_test.dart

Issue 11032035: Move Bidi functions into methods to make the docs look better (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/intl/test/bidi_format_test.dart
===================================================================
--- pkg/intl/test/bidi_format_test.dart (revision 13189)
+++ pkg/intl/test/bidi_format_test.dart (working copy)
@@ -14,6 +14,11 @@
main() {
var LTR = TextDirection.LTR;
var RTL = TextDirection.RTL;
+ var LRM = Bidi.LRM;
+ var RLM = Bidi.RLM;
+ var RLE = Bidi.RLE;
+ var PDF = Bidi.PDF;
+ var LRE = Bidi.LRE;
var UNKNOWN = TextDirection.UNKNOWN;
var he = '\u05e0\u05e1';
var en = 'abba';

Powered by Google App Engine
This is Rietveld 408576698