-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[swift] Add macro expansion support for swift 5.9 #4698
Conversation
don't know on which branch I should PR into |
@kenji21 PRs should be submitted against master to be included on the next release. |
e2547c3
to
d8eb89e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR.
My understanding is that Swift 5.9 actually included more language features, such as the ability to use if and switch as expressions for variable assignment and return values:
statusBar.text = if !hasConnection { "Disconnected" }
else if let error = lastError { error.localizedDescription }
else { "Ready" }
We should ensure this is supported before declaring 5.9 as a supported / default language version.
pmd-swift/src/main/java/net/sourceforge/pmd/lang/swift/SwiftLanguageModule.java
Show resolved
Hide resolved
pmd-swift/src/test/resources/net/sourceforge/pmd/lang/swift/cpd/testdata/Swift5.9.swift
Outdated
Show resolved
Hide resolved
d8eb89e
to
67ca6a4
Compare
pmd-swift/src/test/resources/net/sourceforge/pmd/lang/swift/cpd/testdata/Swift5.9.swift
Show resolved
Hide resolved
Ok, it is now, since I initially added the Swift5.9.swift file on a branch starting from the 6.55 tag, which has the "old path for SwiftTokenizerTest.java" https://github.com/pmd/pmd/blob/pmd_releases/6.55.0/pmd-swift/src/test/java/net/sourceforge/pmd/cpd/SwiftTokenizerTest.java#L61 file which references swift all files to test |
be9fbbc
to
1b84e0c
Compare
oh... rebasing from 6.55 to master isn't enough... |
A little help on this failure is welcomed:
for some context, swift 5.9 has macros: let x = 3.14159
let y = 2.71828
#myMacro(x + y) So I added only few lines to have them in the Swift.g4 file:
|
@kenji21 Sorry for the late response. The current antlr integration in PMD is quite straight: we end up actually using the parser tree from antlr and are not creating an abstract syntax tree (which is on the roadmap for later). That's why terminal symbols like '#' end up in the PMD's "AST" representation. For such terminal symbols, we need to provide a name, so that these can be queried with XPath expressions. This is defined in pmd/pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/impl/antlr4/AntlrNameDictionary.java Line 96 in 16967d3
case "#": return "hash"; Then this exception should be solved. |
pmd-swift/src/main/antlr4/net/sourceforge/pmd/lang/swift/ast/Swift.g4
Outdated
Show resolved
Hide resolved
c24931a
to
a7ce5d1
Compare
rebased on current master, CI now fails on pmd-dist :
|
That's expected, because you added a new language version. You need to fix the integration test: pmd/pmd-dist/src/test/java/net/sourceforge/pmd/it/BinaryDistributionIT.java Lines 61 to 63 in 16967d3
|
a7ce5d1
to
cae760f
Compare
Generated by 🚫 Danger |
cae760f
to
64ae286
Compare
I was trying to locally test a release on real source code, but |
You'll need to run |
a671bbe
to
b423336
Compare
pmd-dist/src/test/java/net/sourceforge/pmd/it/BinaryDistributionIT.java
Outdated
Show resolved
Hide resolved
pmd-swift/src/main/antlr4/net/sourceforge/pmd/lang/swift/ast/Swift.g4
Outdated
Show resolved
Hide resolved
pmd-swift/src/main/antlr4/net/sourceforge/pmd/lang/swift/ast/Swift.g4
Outdated
Show resolved
Hide resolved
pmd-swift/src/test/resources/net/sourceforge/pmd/lang/swift/cpd/testdata/Swift5.9.swift
Outdated
Show resolved
Hide resolved
b423336
to
59b3717
Compare
59b3717
to
10ae2fa
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
I'll update the grammar a bit (e.g. to parse the macro expansion expression as an expression rather than a declaration) and add parser tests in net.sourceforge.pmd.lang.swift.ast.SwiftParserTests to make sure, we actually support macro expansions.
[swift] Add macro expansion support for swift 5.9 #4698
Describe the PR
Introduce support for Swift 5.9, with new macros feature
Related issues
Ready?
./mvnw clean verify
passes (checked automatically by github actions)