From 4f791e5c31706cbc4189d5aa37755ccfec4e2b56 Mon Sep 17 00:00:00 2001 From: atanasovg Date: Thu, 15 May 2014 11:33:53 +0300 Subject: [PATCH] Renamed image-impl to image-native. Renamed console-helper to console-native. --- BCL.csproj | 28 +++++++++---------- ...r.android.ts => console-native.android.ts} | 0 ...onsole-helper.d.ts => console-native.d.ts} | 0 ...le-helper.ios.ts => console-native.ios.ts} | 0 console/console.ts | 2 +- ...mpl.android.ts => image-native.android.ts} | 0 image/{image-impl.d.ts => image-native.d.ts} | 0 ...{image-impl.ios.ts => image-native.ios.ts} | 0 image/image.ts | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) rename console/{console-helper.android.ts => console-native.android.ts} (100%) rename console/{console-helper.d.ts => console-native.d.ts} (100%) rename console/{console-helper.ios.ts => console-native.ios.ts} (100%) rename image/{image-impl.android.ts => image-native.android.ts} (100%) rename image/{image-impl.d.ts => image-native.d.ts} (100%) rename image/{image-impl.ios.ts => image-native.ios.ts} (100%) diff --git a/BCL.csproj b/BCL.csproj index 5a12d08d0..988af8b4f 100644 --- a/BCL.csproj +++ b/BCL.csproj @@ -84,10 +84,16 @@ application.d.ts + + console-native.d.ts + + + console-native.d.ts + console.d.ts - + declarations.d.ts @@ -104,11 +110,17 @@ + + image-native.d.ts + + + image-native.d.ts + image.d.ts - + location.d.ts @@ -160,12 +172,6 @@ timer.d.ts - - console-helper.d.ts - - - console-helper.d.ts - file-system.d.ts @@ -181,12 +187,6 @@ http-request.d.ts - - image-impl.d.ts - - - image-impl.d.ts - diff --git a/console/console-helper.android.ts b/console/console-native.android.ts similarity index 100% rename from console/console-helper.android.ts rename to console/console-native.android.ts diff --git a/console/console-helper.d.ts b/console/console-native.d.ts similarity index 100% rename from console/console-helper.d.ts rename to console/console-native.d.ts diff --git a/console/console-helper.ios.ts b/console/console-native.ios.ts similarity index 100% rename from console/console-helper.ios.ts rename to console/console-native.ios.ts diff --git a/console/console.ts b/console/console.ts index 74365afeb..a97eb33f9 100644 --- a/console/console.ts +++ b/console/console.ts @@ -1,4 +1,4 @@ -import helperModule = require("console/console-helper"); +import helperModule = require("console/console-native"); export class Console { private _timers: any; diff --git a/image/image-impl.android.ts b/image/image-native.android.ts similarity index 100% rename from image/image-impl.android.ts rename to image/image-native.android.ts diff --git a/image/image-impl.d.ts b/image/image-native.d.ts similarity index 100% rename from image/image-impl.d.ts rename to image/image-native.d.ts diff --git a/image/image-impl.ios.ts b/image/image-native.ios.ts similarity index 100% rename from image/image-impl.ios.ts rename to image/image-native.ios.ts diff --git a/image/image.ts b/image/image.ts index 2f9439918..8893bf2ff 100644 --- a/image/image.ts +++ b/image/image.ts @@ -1,5 +1,5 @@ import app = require("application/application"); -import impl = require("image/image-impl"); +import impl = require("image/image-native"); import promises = require("promises/promises"); import http = require("http/http");