-
Notifications
You must be signed in to change notification settings - Fork 37
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
Add xtext project for contracts #896
Add xtext project for contracts #896
Conversation
Currently with a dummy implementation to be extended later.
Test Results 113 files + 71 113 suites +71 49s ⏱️ +14s Results for commit adb5630. ± Comparison against base commit 49e590a. This pull request removes 10 and adds 7111 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
Ok, I just saw that there are build errors, will make an update soon. |
Requesting review for this PR, since my next one is dependent on this. @bwiesmayr |
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.
The copyright headers aren't all correct.
They should be as abundantly as possible, because we tend to have automated checks that they are there, hence, the formatting also often matters.
Please check the jdt.prefs and the MANIFEST-files (comments below).
...s/org.eclipse.fordiac.ide.contractspec/src/org/eclipse/fordiac/ide/GenerateContractSpec.mwe2
Show resolved
Hide resolved
...iac.ide.contractspec/src-gen/org/eclipse/fordiac/ide/services/ContractSpecGrammarAccess.java
Outdated
Show resolved
Hide resolved
...ctspec/src-gen/org/eclipse/fordiac/ide/parser/antlr/internal/InternalContractSpecParser.java
Outdated
Show resolved
Hide resolved
...c.ide.contractspec/src-gen/org/eclipse/fordiac/ide/contractSpec/util/ContractSpecSwitch.java
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,7 @@ | |||
eclipse.preferences.version=1 |
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.
did you copy them from another plugin? we usually have the same prefs on all plugins
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.
Those were the default. I now copied all the .prefs files from the globalconstantseditor plugins.
org.eclipse.jdt.core.compiler.compliance=21 | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning | ||
org.eclipse.jdt.core.compiler.release=enabled |
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.
I think these are identical in all projects, did you check the other pref files?
@@ -0,0 +1,7 @@ | |||
eclipse.preferences.version=1 | |||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21 | |||
org.eclipse.jdt.core.compiler.compliance=21 |
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.
I think these are identical in all projects, did you check the other pref files?
Currently with a dummy implementation to be extended later.