Skip to content

Commit 585cdb6

Browse files
committed
add copyright notices
1 parent cfe818a commit 585cdb6

File tree

29 files changed

+174
-0
lines changed

29 files changed

+174
-0
lines changed

apps/elixir_ls_utils/lib/completion_engine.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
# This file includes modified code extracted from the elixir project. Namely:
28
#
39
# https://github.com/elixir-lang/elixir/blob/v1.1/lib/iex/lib/iex/autocomplete.exs

apps/elixir_ls_utils/lib/matcher.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.Utils.Matcher do
28
@moduledoc """
39
## Suggestion Matching

apps/elixir_ls_utils/test/complete_test.exs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
# This file includes modified code extracted from the elixir project. Namely:
28
#
39
# https://github.com/elixir-lang/elixir/blob/v1.9/lib/iex/test/iex/autocomplete_test.exs

apps/language_server/lib/language_server/ast_utils.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.AstUtils do
28
import ElixirLS.LanguageServer.Protocol
39
alias ElixirLS.LanguageServer.SourceFile

apps/language_server/lib/language_server/location.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.Location do
28
@moduledoc """
39
A location in a source file or buffer

apps/language_server/lib/language_server/providers/completion/generic_reducer.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.Providers.Completion.GenericReducer do
28
@moduledoc """
39
A generic behaviour for reducers that customize suggestions

apps/language_server/lib/language_server/providers/completion/reducer.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.Providers.Completion.Reducer do
28
@moduledoc !"""
39
Provides common functions for reducers.

apps/language_server/lib/language_server/providers/completion/reducers/bitstring.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.Providers.Completion.Reducers.Bitstring do
28
@moduledoc false
39

apps/language_server/lib/language_server/providers/completion/reducers/callbacks.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.Providers.Completion.Reducers.Callbacks do
28
@moduledoc false
39

apps/language_server/lib/language_server/providers/completion/reducers/complete_engine.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# This code has originally been a part of https://github.com/elixir-lsp/elixir_sense
2+
3+
# Copyright (c) 2017 Marlus Saraiva
4+
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
17
defmodule ElixirLS.LanguageServer.Providers.Completion.Reducers.CompleteEngine do
28
@moduledoc false
39

0 commit comments

Comments
 (0)