Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
64931c4e
Unverified
Commit
64931c4e
authored
Sep 17, 2018
by
Vaibhav Sagar
Committed by
GitHub
Sep 17, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #939 from lucasdicioccio/fix-haddock
Fix haddock generation.
parents
f6386368
c67fcd45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
Types.hs
src/IHaskell/Types.hs
+8
-4
No files found.
src/IHaskell/Types.hs
View file @
64931c4e
...
@@ -249,14 +249,18 @@ instance ToJSON WidgetMethod where
...
@@ -249,14 +249,18 @@ instance ToJSON WidgetMethod where
toJSON
(
CustomContent
v
)
=
object
[
"method"
.=
(
"custom"
::
Text
),
"content"
.=
v
]
toJSON
(
CustomContent
v
)
=
object
[
"method"
.=
(
"custom"
::
Text
),
"content"
.=
v
]
-- | Output of evaluation.
-- | Output of evaluation.
--
-- A result can either be intermediate or final.
-- Final result has Mimebundles ('DisplayData') and Comm operations
-- ('WidgetMsg') on top of Display outputs.
data
EvaluationResult
data
EvaluationResult
-- | An intermediate result which communicates what has been printed thus far.
-- | An intermediate result which communicates what has been printed thus far.
=
IntermediateResult
=
IntermediateResult
!
Display
-- ^ Display outputs.
!
Display
|
FinalResult
|
FinalResult
!
Display
-- ^ Display outputs.
!
Display
!
[
DisplayData
]
-- ^ Mimebundles to display in the IPython pager.
!
[
DisplayData
]
!
[
WidgetMsg
]
-- ^ Comm operations
!
[
WidgetMsg
]
deriving
Show
deriving
Show
...
...
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