Skip to content

Commit ea1c1e0

Browse files
committed
fix build
1 parent 0701ba4 commit ea1c1e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/service/InteractiveCheckerTests.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ let identsAndRanges (input: Ast.ParsedInput) =
3737
match moduleDecl with
3838
| Ast.SynModuleDecl.Types(typeDefns, _) -> (typeDefns |> List.collect extractFromTypeDefn)
3939
| Ast.SynModuleDecl.ModuleAbbrev(ident, _, range) -> [ identAndRange (ident.ToString()) range ]
40-
| Ast.SynModuleDecl.NestedModule(componentInfo, decls, _, _) -> (extractFromComponentInfo componentInfo) @ (decls |> List.collect extractFromModuleDecl)
40+
| Ast.SynModuleDecl.NestedModule(componentInfo, _, decls, _, _) -> (extractFromComponentInfo componentInfo) @ (decls |> List.collect extractFromModuleDecl)
4141
| Ast.SynModuleDecl.Let(_, _, _) -> failwith "Not implemented yet"
4242
| Ast.SynModuleDecl.DoExpr(_, _, _range) -> failwith "Not implemented yet"
4343
| Ast.SynModuleDecl.Exception(_, _range) -> failwith "Not implemented yet"
4444
| Ast.SynModuleDecl.Open(longIdentWithDots, range) -> [ identAndRange (longIdentWithDotsToString longIdentWithDots) range ]
4545
| Ast.SynModuleDecl.Attributes(_attrs, _range) -> failwith "Not implemented yet"
4646
| Ast.SynModuleDecl.HashDirective(_, _range) -> failwith "Not implemented yet"
4747
| Ast.SynModuleDecl.NamespaceFragment(moduleOrNamespace) -> extractFromModuleOrNamespace moduleOrNamespace
48-
and extractFromModuleOrNamespace (Ast.SynModuleOrNamespace(longIdent, _, moduleDecls, _, _, _, range)) =
48+
and extractFromModuleOrNamespace (Ast.SynModuleOrNamespace(longIdent, _, _, moduleDecls, _, _, _, range)) =
4949
(identAndRange (longIdentToString longIdent) range) :: (moduleDecls |> List.collect extractFromModuleDecl)
5050

5151
match input with

0 commit comments

Comments
 (0)