Index: sdk/lib/_internal/lib/io_patch.dart |
diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart |
index dd4444abcdce10eb3d273ff34ee23968981de2ed..0acb7d43dcb0dd3f8efaa57f2f2514b9341fa90c 100644 |
--- a/sdk/lib/_internal/lib/io_patch.dart |
+++ b/sdk/lib/_internal/lib/io_patch.dart |
@@ -9,9 +9,12 @@ patch class _Directory { |
patch static _setCurrent(path) { |
throw new UnsupportedError("Directory_SetCurrent"); |
} |
- patch static _createTemp(String template, bool system) { |
+ patch static _createTemp(String path) { |
throw new UnsupportedError("Directory._createTemp"); |
} |
+ patch static String _systemTemp() { |
+ throw new UnsupportedError("Directory._systemTemp"); |
+ } |
patch static int _exists(String path) { |
throw new UnsupportedError("Directory._exists"); |
} |