mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Added support for .impl suffix for files where we have same d.ts and ts names - e.g. file-system.d.ts & file-system.ts. Updated the BuildTasks.dll with the new logic.
This commit is contained in:
@@ -110,6 +110,9 @@
|
||||
</TypeScriptCompile>
|
||||
<TypeScriptCompile Include="file-system\file-system.d.ts" />
|
||||
<TypeScriptCompile Include="file-system\file-system-access.d.ts" />
|
||||
<TypeScriptCompile Include="file-system\file-system.impl.ts">
|
||||
<DependentUpon>file-system.d.ts</DependentUpon>
|
||||
</TypeScriptCompile>
|
||||
<TypeScriptCompile Include="image-source\image-source-native.android.ts">
|
||||
<DependentUpon>image-source-native.d.ts</DependentUpon>
|
||||
</TypeScriptCompile>
|
||||
@@ -170,9 +173,6 @@
|
||||
<DependentUpon>timer.d.ts</DependentUpon>
|
||||
</TypeScriptCompile>
|
||||
<TypeScriptCompile Include="Tests\local-settings-tests.ts" />
|
||||
<TypeScriptCompile Include="file-system\file-system.ts">
|
||||
<DependentUpon>file-system.d.ts</DependentUpon>
|
||||
</TypeScriptCompile>
|
||||
<TypeScriptCompile Include="file-system\file-system-access.android.ts">
|
||||
<DependentUpon>file-system-access.d.ts</DependentUpon>
|
||||
</TypeScriptCompile>
|
||||
|
||||
@@ -49,9 +49,6 @@ var createFolder = function (info: { path: string; name: string; }) {
|
||||
};
|
||||
|
||||
export class FileSystemEntity {
|
||||
/**
|
||||
* Gets the Folder object representing the parent of this entity. Will be null for a root folder like Documents or Temporary.
|
||||
*/
|
||||
get parent(): Folder {
|
||||
var onError = function (error) {
|
||||
throw error;
|
||||
Reference in New Issue
Block a user