Skip to content

Commit

Permalink
Merge pull request #15512 from dotnet/merges/main-to-release/net8
Browse files Browse the repository at this point in the history
Merge main to release/net8
  • Loading branch information
vzarytovskii committed Jun 27, 2023
2 parents 635d129 + 6151b1f commit 9bf50f7
Show file tree
Hide file tree
Showing 22 changed files with 389 additions and 233 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ targets.make text eol=lf
*.sh text eol=lf

*.bsl linguist-vendored=true
*.xlf linguist-generated=true

*.png binary
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ stages:
regular:
_experimental_flag: ''
experimental_features:
_experimental_flag: 1
_experimental_flag: ''
steps:
- checkout: self
clean: true
Expand Down Expand Up @@ -513,7 +513,7 @@ stages:
regular:
_experimental_flag: ''
experimental_features:
_experimental_flag: 1
_experimental_flag: ''
steps:
- checkout: self
clean: true
Expand Down
104 changes: 0 additions & 104 deletions src/Compiler/Driver/GraphChecking/TypeCheckingGraphProcessing.fs

This file was deleted.

17 changes: 0 additions & 17 deletions src/Compiler/Driver/GraphChecking/TypeCheckingGraphProcessing.fsi

This file was deleted.

2 changes: 1 addition & 1 deletion src/Compiler/Driver/GraphChecking/Types.fs
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ type internal FilePairMap(files: FileInProject array) =
member x.IsSignature(index: FileIndex) = Map.containsKey index sigToImpl

/// Callback that returns a previously calculated 'Result and updates 'State accordingly.
type internal Finisher<'State, 'Result> = delegate of 'State -> 'Result * 'State
type internal Finisher<'Node, 'State, 'Result> = Finisher of node: 'Node * finisher: ('State -> 'Result * 'State)
2 changes: 1 addition & 1 deletion src/Compiler/Driver/GraphChecking/Types.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ type internal FilePairMap =
member IsSignature: index: FileIndex -> bool

/// Callback that returns a previously calculated 'Result and updates 'State accordingly.
type internal Finisher<'State, 'Result> = delegate of 'State -> 'Result * 'State
type internal Finisher<'Node, 'State, 'Result> = Finisher of node: 'Node * finisher: ('State -> 'Result * 'State)

0 comments on commit 9bf50f7

Please sign in to comment.