Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
fe02fd80
Commit
fe02fd80
authored
Jul 26, 2016
by
chriseth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide textarea and show error for old version.
parent
519dbe2d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
formalVerification.js
src/app/formalVerification.js
+12
-3
No files found.
src/app/formalVerification.js
View file @
fe02fd80
...
...
@@ -6,17 +6,26 @@ function FormalVerification (outputElement, renderer) {
}
FormalVerification
.
prototype
.
compiling
=
function
()
{
$
(
'#formalVerificationInput'
,
this
.
outputElement
).
val
(
''
);
$
(
'#formalVerificationInput'
,
this
.
outputElement
)
.
val
(
''
)
.
hide
();
$
(
'#formalVerificationErrors'
).
empty
();
};
FormalVerification
.
prototype
.
compilationFinished
=
function
(
compilationResult
)
{
if
(
compilationResult
.
formal
!==
undefined
)
{
if
(
compilationResult
.
formal
===
undefined
)
{
this
.
renderer
.
error
(
'Formal verification not supported by this compiler version.'
,
$
(
'#formalVerificationErrors'
),
true
);
}
else
{
if
(
compilationResult
.
formal
[
'why3'
]
!==
undefined
)
{
$
(
'#formalVerificationInput'
,
this
.
outputElement
).
val
(
'(* copy this to http://why3.lri.fr/try/ *)'
+
compilationResult
.
formal
[
'why3'
]
);
)
.
show
();
}
if
(
compilationResult
.
formal
.
errors
!==
undefined
)
{
var
errors
=
compilationResult
.
formal
.
errors
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment