-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
export module ErrorExceptionTest { | ||
// should be System.Exception | ||
var instanceErrorProperty: Error; | ||
|
||
// should be replaced with an alias to System.Exception, "i" will not be mapped. | ||
interface InheritFromError extends Error { | ||
i : number | ||
} | ||
|
||
var instanceInheritFromErrorProperty: InheritFromError; | ||
} | ||
|
16 changes: 16 additions & 0 deletions
16
test/fragments/regressions/#xxx-error-to-exception.expected.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// ts2fable 0.0.0 | ||
module rec #xxx-error-to-exception | ||
open System | ||
open Fable.Core | ||
open Fable.Import.JS | ||
|
||
let [<Import("ErrorExceptionTest","test")>] errorExceptionTest: ErrorExceptionTest.IExports = jsNative | ||
|
||
module ErrorExceptionTest = | ||
|
||
type [<AllowNullLiteral>] IExports = | ||
abstract instanceErrorProperty: System.Exception | ||
abstract instanceInheritFromErrorProperty: InheritFromError | ||
|
||
type InheritFromError = | ||
System.Exception |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters