Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rodin Event-B AST
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
Rodin Event-B AST
Commits
95a2be3c
Commit
95a2be3c
authored
9 years ago
by
Jens Bendisposto
Browse files
Options
Downloads
Patches
Plain Diff
build script
parent
f184077d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+8
-0
8 additions, 0 deletions
README.md
build.gradle
+8
-8
8 additions, 8 deletions
build.gradle
with
16 additions
and
8 deletions
README.md
0 → 100644
+
8
−
0
View file @
95a2be3c
# Rodin B AST
This repository contains a standalone version of the Rodin AST. It is used within the ProB tool.
No original file is changed, but we added this README and the build.gradle.
Note to future Jens:
After updating the sources the
```gradle patch```
task must be run. This modifies the sources.
**Do not run the task multiple times!**
This diff is collapsed.
Click to expand it.
build.gradle
+
8
−
8
View file @
95a2be3c
...
...
@@ -43,27 +43,27 @@ task tom() << {
}
task
patch
()
<<
{
def
patch_content
=
"""
--- rodin-ast/src/org/eventb/internal/core/parser/SubParsers.java 2015-08-06 12:29:24.000000000 +0200
+++ rodin-b-sharp-rodincore/org.eventb.core.ast/src/org/eventb/internal/core/parser/SubParsers.java 2015-08-06 12:42:32.000000000 +0200
def
patch_content
=
"""diff --git a/src/org/eventb/internal/core/parser/SubParsers.java b/src/org/eventb/internal/core/parser/SubParsers.java
index e71bf08..0977da1 100644
--- a/src/org/eventb/internal/core/parser/SubParsers.java
+++ b/src/org/eventb/internal/core/parser/SubParsers.java
@@ -492,7 +492,7 @@ public class SubParsers {
};
- public static class BoundIdentDeclSubParser extends ValuedNudParser<
org.eventb.core.ast.
BoundIdentDecl> {
+ public static class BoundIdentDeclSubParser extends ValuedNudParser<BoundIdentDecl> {
- public static class BoundIdentDeclSubParser extends ValuedNudParser<BoundIdentDecl> {
+ public static class BoundIdentDeclSubParser extends ValuedNudParser<
org.eventb.core.ast.
BoundIdentDecl> {
@Override
protected int getKind(AbstractGrammar grammar) {
"""
File
p
=
file
(
"SubParsers.patch"
)
p
.
delete
();
p
<<
patch_content
ant
.
patch
(
patchfile:
'SubParsers.patch'
,
originalfile:
'src/org/eventb/internal/core/parser/SubParsers.java'
,
failonerror:
'true'
)
}
compileJava
{
dependsOn
<<
'tom'
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment