Skip to content

Commit 253a526

Browse files
authored
Merge pull request #171 from nojaf/add-path-to-ast-collecting
Add path to ast collecting
2 parents 17d4eb3 + 38e115a commit 253a526

File tree

4 files changed

+563
-527
lines changed

4 files changed

+563
-527
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
### Changed
11+
* [Add path to ASTCollecting](https://github.com/ionide/FSharp.Analyzers.SDK/pull/171) (thanks @nojaf!)
12+
813
## [0.21.0] - 2023-11-22
914

1015
### Changed

docs/content/Dual Analyzer.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ let private topologicallySortedOpenStatementsAnalyzer
4141

4242
let walker =
4343
{ new SyntaxCollectorBase() with
44-
override _.WalkSynModuleSigDecl(decl: SynModuleSigDecl) =
44+
override _.WalkSynModuleSigDecl(_, decl: SynModuleSigDecl) =
4545
match decl with
4646
| SynModuleSigDecl.Open(
4747
target = SynOpenDeclTarget.ModuleOrNamespace(longId = LongIdentAsString value; range = mOpen)) ->
4848
allOpenStatements.Add(value, mOpen)
4949
| _ -> ()
5050

51-
override _.WalkSynModuleDecl(decl: SynModuleDecl) =
51+
override _.WalkSynModuleDecl(_, decl: SynModuleDecl) =
5252
match decl with
5353
| SynModuleDecl.Open(
5454
target = SynOpenDeclTarget.ModuleOrNamespace(longId = LongIdentAsString value; range = mOpen)) ->

0 commit comments

Comments
 (0)