@@ -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