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

Unified Diff: runtime/lib/crypto/crypto_vm.dart

Issue 11368124: Fix library syntax (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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: runtime/lib/crypto/crypto_vm.dart
===================================================================
--- runtime/lib/crypto/crypto_vm.dart (revision 14646)
+++ runtime/lib/crypto/crypto_vm.dart (working copy)
@@ -5,9 +5,9 @@
// TODO(ager, iposva): Get rid of this file when the VM snapshot
// generation can deal with normal library structure.
-#library('crypto');
+library crypto;
-#import('dart:math');
+import 'dart:math';
/**
* Interface for cryptographic hash functions.

Powered by Google App Engine
This is Rietveld 408576698