-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add relevant devTasks for Juvix dev commads, fixes, and snippets
- Loading branch information
1 parent
33f2184
commit 3002e58
Showing
6 changed files
with
151 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
{ | ||
"All": { | ||
"prefix": ["debug-all"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: All $BLOCK_COMMENT_END" | ||
}, | ||
"None": { | ||
"prefix": ["debug-none"], | ||
"body": "$BLOCK_COMMENT_START NO-DEBUG! $BLOCK_COMMENT_END" | ||
}, | ||
"Parsed": { | ||
"prefix": ["debug-parse"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: sed $BLOCK_COMMENT_END" | ||
}, | ||
"Scoped": { | ||
"prefix": ["debug-scope"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: Scoped" | ||
}, | ||
"HighlightJSON": { | ||
"prefix": ["debug-highlight-json"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: HighlightJSON $BLOCK_COMMENT_END" | ||
}, | ||
"Highlight": { | ||
"prefix": ["debug-highlight"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: Highlight $BLOCK_COMMENT_END" | ||
}, | ||
"InternalPretty": { | ||
"prefix": ["debug-internal-pretty"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: ernalPretty $BLOCK_COMMENT_END" | ||
}, | ||
"InternalArity": { | ||
"prefix": ["debug-internal-arity"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalArity $BLOCK_COMMENT_END" | ||
}, | ||
"InternalTypecheck": { | ||
"prefix": ["debug-internal-typecheck"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalTypecheck $BLOCK_COMMENT_END" | ||
}, | ||
"InternalCoreEval": { | ||
"prefix": ["debug-internal-core-eval"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalCoreEval $BLOCK_COMMENT_END" | ||
}, | ||
"InternalCoreEvalShowDeBruijn": { | ||
"prefix": ["debug-internal-core-eval-show-de-bruijn"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalCoreEvalShowDeBruijn $BLOCK_COMMENT_END" | ||
}, | ||
"InternalCoreEvalTransformsLifting": { | ||
"prefix": ["debug-lifting"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalCoreEvalTransformsLifting $BLOCK_COMMENT_END" | ||
}, | ||
"InternalCoreEvalTransformsMoveApps": { | ||
"prefix": ["debug-move-apps"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalCoreEvalTransformsMoveApps $BLOCK_COMMENT_END" | ||
}, | ||
"InternalCoreEvalTransformsRemoveTypeArgs": { | ||
"prefix": ["debug-remove-type-args"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: InternalCoreEvalTransformsRemoveTypeArgs $BLOCK_COMMENT_END" | ||
}, | ||
"InternalCoreEvalTransformsRemoveTopEtaExpand": { | ||
"prefix": ["debug-remove-top-eta-expand"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: ernalCoreEvalTransformsRemoveTopEtaExpand $BLOCK_COMMENT_END" | ||
}, | ||
"CoreEval": { | ||
"prefix": ["debug-core-eval"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: CoreEval $BLOCK_COMMENT_END" | ||
}, | ||
"CoreRead": { | ||
"prefix": ["debug-core-read"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: CoreRead $BLOCK_COMMENT_END" | ||
}, | ||
"AsmRun": { | ||
"prefix": ["debug-asm-run"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: AsmRun $BLOCK_COMMENT_END" | ||
}, | ||
"AsmValidate": { | ||
"prefix": ["debug-asm-validate"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: AsmValidate $BLOCK_COMMENT_END" | ||
}, | ||
"AsmCompile": { | ||
"prefix": ["debug-asm-compile"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: AsmCompile $BLOCK_COMMENT_END" | ||
}, | ||
"RuntimeCompile": { | ||
"prefix": ["debug-runtime-compile"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: RuntimeCompile $BLOCK_COMMENT_END" | ||
}, | ||
"Root": { | ||
"prefix": ["debug-root"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: Root $BLOCK_COMMENT_END" | ||
}, | ||
"TerminationCalls": { | ||
"prefix": ["debug-termination-calls"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: TerminationCalls $BLOCK_COMMENT_END" | ||
}, | ||
"TerminationGraph": { | ||
"prefix": ["debug-termination-graph"], | ||
"body": "$BLOCK_COMMENT_START DEBUG: TerminationGraph" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ open import B; | |
axiom a : A; | ||
axiom b : A; | ||
end; | ||
-- DEBUG: Internal-Arity | ||
|
||
{- DEBUG: All -} |