File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,4 @@ defmodule Lexical do
1818
1919 @ typedoc "A string representation of a path on the filesystem"
2020 @ type path :: String . t ( )
21-
22- def fun ( ) do
23- :ok
24- end
2521end
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ defmodule ElixirLS.LanguageServer.SourceFile.PathTest do
147147
148148 test "windows path" do
149149 if windows? ( ) do
150- drive_letter = Path . expand ( "/" ) |> String . split ( ":" ) |> hd ( )
150+ drive_letter = "/" |> Path . expand ( ) |> String . split ( ":" ) |> hd ( )
151151 assert "file:///c%3A/win/path" == to_uri ( "c:/win/path" )
152152 assert "file:///c%3A/win/path" == to_uri ( "C:/win/path" )
153153 assert "file:///c%3A/win/path" == to_uri ( "c:/win/path/" )
Original file line number Diff line number Diff line change 11defmodule Lexical.Test.RangeSupport do
2- alias Lexical.Math
3- alias Lexical.Text
42 alias Lexical.Document
53 alias Lexical.Document.Position
64 alias Lexical.Document.Range
5+ alias Lexical.Math
76 alias Lexical.Test.CursorSupport
7+ alias Lexical.Text
88
99 import Lexical.Document.Line , only: [ line: 1 ]
1010
You can’t perform that action at this time.
0 commit comments