Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change path references into unified implementation #171

Merged
merged 44 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
89b6ccf
parser support for 4-element paths
mkurnikov Jul 9, 2024
cdc56bd
add two resolve tests
mkurnikov Jul 10, 2024
7c9237d
module alias tests
mkurnikov Jul 10, 2024
55890c6
UseSpeck with path in parser
mkurnikov Jul 12, 2024
edede42
before shadowing
mkurnikov Jul 14, 2024
adb671e
implement shadowing
mkurnikov Jul 14, 2024
31de334
visibility rules
mkurnikov Jul 14, 2024
976d00e
almost finish name resolution
mkurnikov Jul 14, 2024
cc7337f
fix import optimizer
mkurnikov Jul 16, 2024
3f1c293
fix spec tests
mkurnikov Jul 16, 2024
4199874
fix auto imports
mkurnikov Jul 16, 2024
a4e3e47
fix import optimizer
mkurnikov Jul 16, 2024
185ca99
aliases fixes
mkurnikov Jul 16, 2024
c0c0d41
fix completions
mkurnikov Jul 16, 2024
62d63fc
addresses resolution
mkurnikov Jul 16, 2024
f5bc73c
finish resolution tests
mkurnikov Jul 16, 2024
b281e4f
fix import candidates
mkurnikov Jul 17, 2024
6df8d76
adjust places where searchScope() is used as it's now properly suppor…
mkurnikov Jul 17, 2024
205ac4d
friend declaration as path
mkurnikov Jul 17, 2024
095c441
fix multiple item resolution for multiple namespaces
mkurnikov Jul 17, 2024
662ac1e
new PathKind, named address support for tests
mkurnikov Jul 18, 2024
605e988
named address fixes, replace last FqModuleRef usage
mkurnikov Jul 18, 2024
041bde5
comment out a lot of legacy code
mkurnikov Jul 18, 2024
858fd9a
correctly handle item scopes
mkurnikov Jul 18, 2024
916731b
attempt to remove ContextScopeInfo filter
mkurnikov Jul 18, 2024
7812f68
fix use speck two element named address path kind
mkurnikov Jul 18, 2024
d38f807
Merge branch 'master' into path-4-elements
mkurnikov Jul 21, 2024
3fd65fe
remove address by value inspection
mkurnikov Jul 22, 2024
c207e59
remove old code
mkurnikov Jul 22, 2024
bebd117
fix some tests
mkurnikov Jul 23, 2024
19ff36e
fix curly braces test
mkurnikov Jul 23, 2024
3e72aac
fix highlighting test
mkurnikov Jul 23, 2024
6db78ed
drop redundant qualified path inspection
mkurnikov Jul 23, 2024
ca707b1
fix addresses completion
mkurnikov Jul 23, 2024
ab4475a
add more tests for modules completion
mkurnikov Jul 23, 2024
d757819
remove find usages test
mkurnikov Jul 23, 2024
ca5cbb4
remove ContextScopeInfo.matches usages
mkurnikov Jul 30, 2024
7d4de7e
remove old code
mkurnikov Jul 30, 2024
9955dfa
schema field resolution refactor, more tests
mkurnikov Jul 30, 2024
5568172
remove old code
mkurnikov Jul 30, 2024
f8e80d3
fix remaining address and module equality tests
mkurnikov Aug 1, 2024
b378af1
fix remaining tests
mkurnikov Aug 1, 2024
317f861
remove unused code
mkurnikov Aug 1, 2024
11ff2c1
pin plugin verifier version
mkurnikov Aug 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into path-4-elements
  • Loading branch information
mkurnikov committed Jul 21, 2024
commit d38f8074791749b53d385f5cfb2c7b75c49c48f0
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
tests:
strategy:
matrix:
gradle-properties-version: [ 233, 241 ]
gradle-properties-version: [ 233, 241, 242 ]

runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
uses: gradle/gradle-build-action@v2.7.0
with:
gradle-version: wrapper
arguments: ":plugin:verifyPluginConfiguration -Pkotlin.incremental=false --no-daemon"
arguments: ":verifyPluginConfiguration -Pkotlin.incremental=false --no-daemon"
gradle-home-cache-excludes: |
caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm
caches/modules-2/files-2.1/com.jetbrains.intellij.idea
Expand All @@ -70,7 +70,7 @@ jobs:
uses: gradle/gradle-build-action@v2.7.0
with:
gradle-version: wrapper
arguments: ":plugin:runPluginVerifier -Pkotlin.incremental=false --no-daemon"
arguments: ":verifyPlugin -Pkotlin.incremental=false --no-daemon"
gradle-home-cache-excludes: |
caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm
caches/modules-2/files-2.1/com.jetbrains.intellij.idea
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ src/main/gen/
/dove
deps/
bin/
.intellijPlatform
Loading
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.