-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support validation checks for Constants with units of measure types
- Loading branch information
Showing
62 changed files
with
407 additions
and
4 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
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 01.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m> |
7 changes: 7 additions & 0 deletions
7
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 01.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m> |
6 changes: 6 additions & 0 deletions
6
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 01.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23<kg> |
6 changes: 6 additions & 0 deletions
6
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 01.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m> = 23<kg> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 02.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m * kg> |
7 changes: 7 additions & 0 deletions
7
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 02.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m * kg> |
6 changes: 6 additions & 0 deletions
6
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 02.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23<kg> |
6 changes: 6 additions & 0 deletions
6
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 02.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m> = 23<kg> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 03.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m / kg> |
7 changes: 7 additions & 0 deletions
7
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 03.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m / kg> |
6 changes: 6 additions & 0 deletions
6
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 03.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23<kg> |
6 changes: 6 additions & 0 deletions
6
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 03.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m> = 23<kg> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 04.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42< / m> |
7 changes: 7 additions & 0 deletions
7
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 04.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42< / m> |
6 changes: 6 additions & 0 deletions
6
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 04.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23< / kg> |
6 changes: 6 additions & 0 deletions
6
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 04.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m> = 23< / kg> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 05.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m^2> |
7 changes: 7 additions & 0 deletions
7
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 05.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m^2> |
6 changes: 6 additions & 0 deletions
6
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 05.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23<kg> |
6 changes: 6 additions & 0 deletions
6
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 05.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23<kg> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 06.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<(m * kg)> |
7 changes: 7 additions & 0 deletions
7
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 06.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<(m * kg)> |
6 changes: 6 additions & 0 deletions
6
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 06.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<kg> = 23<kg> |
6 changes: 6 additions & 0 deletions
6
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 06.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m> = 23<kg> |
8 changes: 8 additions & 0 deletions
8
...features/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 07.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,8 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
[<Measure>] type s | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m kg s> |
8 changes: 8 additions & 0 deletions
8
...res/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 07.fs.gold
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,8 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
[<Measure>] type s | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m kg s> |
7 changes: 7 additions & 0 deletions
7
...eatures/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 07.fsi
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m kg> = 23<m kg> |
7 changes: 7 additions & 0 deletions
7
...es/quickFixes/updateLiteralConstantInSignatureFix/No update for unknown UoM - 07.fsi.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m kg> = 23<m kg> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ module A | |
[<Measure>] type m | ||
|
||
[<Literal>] | ||
val a : int<m> = 23<m> | ||
val a : int<m> = 42<m> |
7 changes: 7 additions & 0 deletions
7
.../data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 02.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type s | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m * s> |
7 changes: 7 additions & 0 deletions
7
.../features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 02.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type s | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m * s> |
7 changes: 7 additions & 0 deletions
7
...data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 02.fsi
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type s | ||
|
||
[<Literal>] | ||
val a : int<m * s> = 23<m * s> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 02.fsi.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type s | ||
|
||
[<Literal>] | ||
val a : int<m * s> = 42<m * s> |
7 changes: 7 additions & 0 deletions
7
.../data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 03.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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m / kg> |
7 changes: 7 additions & 0 deletions
7
.../features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 03.fs.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m / kg> |
7 changes: 7 additions & 0 deletions
7
...data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 03.fsi
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m / kg> = 23<m / kg> |
7 changes: 7 additions & 0 deletions
7
...features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 03.fsi.gold
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,7 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
[<Measure>] type kg | ||
|
||
[<Literal>] | ||
val a : int<m / kg> = 42<m / kg> |
6 changes: 6 additions & 0 deletions
6
.../data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 04.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,6 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m^2> |
6 changes: 6 additions & 0 deletions
6
.../features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 04.fs.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
|
||
[<Literal>] | ||
let a{caret} = 42<m^2> |
6 changes: 6 additions & 0 deletions
6
...data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 04.fsi
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
|
||
[<Literal>] | ||
val a : int<m^2> = 23<m^2> |
6 changes: 6 additions & 0 deletions
6
...features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 04.fsi.gold
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,6 @@ | ||
module A | ||
|
||
[<Measure>] type m | ||
|
||
[<Literal>] | ||
val a : int<m^2> = 42<m^2> |
4 changes: 4 additions & 0 deletions
4
.../data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 05.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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
let a{caret} = 42<1> |
4 changes: 4 additions & 0 deletions
4
.../features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 05.fs.gold
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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
let a{caret} = 42<1> |
4 changes: 4 additions & 0 deletions
4
...data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 05.fsi
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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
val a : int<1> = 23<1> |
4 changes: 4 additions & 0 deletions
4
...features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 05.fsi.gold
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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
val a : int<1> = 42<1> |
4 changes: 4 additions & 0 deletions
4
.../data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 06.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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
let a{caret} = 42<_> |
4 changes: 4 additions & 0 deletions
4
.../features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 06.fs.gold
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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
let a{caret} = 42<_> |
4 changes: 4 additions & 0 deletions
4
...data/features/quickFixes/updateLiteralConstantInSignatureFix/Update UoM Constant - 06.fsi
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,4 @@ | ||
module A | ||
|
||
[<Literal>] | ||
val a : int<_> = 23<_> |
Oops, something went wrong.