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

Unified Diff: runtime/lib/mirrors_impl.dart

Issue 11312237: Dynamic -> dynamic. (Closed) Base URL: https://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
« no previous file with comments | « runtime/lib/function_patch.dart ('k') | samples/chat/chat_server_lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/mirrors_impl.dart
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
index 969e1ae79034c0c73620874ff09b3a7576163b22..8b57657778c359d08d3dddddc9a4564ee97e0d09 100644
--- a/runtime/lib/mirrors_impl.dart
+++ b/runtime/lib/mirrors_impl.dart
@@ -142,7 +142,7 @@ abstract class _LocalObjectMirrorImpl extends _LocalVMObjectMirrorImpl
Future<InstanceMirror> invoke(String memberName,
List positionalArguments,
- [Map<String,Dynamic> namedArguments]) {
+ [Map<String,dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
@@ -503,7 +503,7 @@ class _LocalClassMirrorImpl extends _LocalObjectMirrorImpl
Future<InstanceMirror> newInstance(String constructorName,
List positionalArguments,
- [Map<String,Dynamic> namedArguments]) {
+ [Map<String,dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
« no previous file with comments | « runtime/lib/function_patch.dart ('k') | samples/chat/chat_server_lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698