mirror of
https://github.com/github/semantic.git
synced 2024-11-28 18:23:44 +03:00
Merge pull request #1411 from github/default-typescript-assignment
Enable typescript assignment by default
This commit is contained in:
commit
d9e5338b02
@ -77,7 +77,7 @@ diffBlobPairs renderer = fmap toOutput . distributeFoldMap (diffBlobPair rendere
|
|||||||
diffBlobPair :: DiffRenderer output -> Both Blob -> Task output
|
diffBlobPair :: DiffRenderer output -> Both Blob -> Task output
|
||||||
diffBlobPair renderer blobs = case (renderer, effectiveLanguage) of
|
diffBlobPair renderer blobs = case (renderer, effectiveLanguage) of
|
||||||
(OldToCDiffRenderer, lang)
|
(OldToCDiffRenderer, lang)
|
||||||
| lang `elem` [ Just Language.Markdown, Just Language.Python, Just Language.Ruby ]
|
| lang `elem` [ Just Language.Markdown, Just Language.Python, Just Language.Ruby, Just Language.TypeScript ]
|
||||||
, Just (SomeParser parser) <- lang >>= someParser (Proxy :: Proxy '[Diffable, Eq1, Foldable, Functor, GAlign, HasDeclaration, Show1, Traversable]) ->
|
, Just (SomeParser parser) <- lang >>= someParser (Proxy :: Proxy '[Diffable, Eq1, Foldable, Functor, GAlign, HasDeclaration, Show1, Traversable]) ->
|
||||||
run (\ blob -> parse parser blob >>= decorate (declarationAlgebra blob)) diffTerms (renderToCDiff blobs)
|
run (\ blob -> parse parser blob >>= decorate (declarationAlgebra blob)) diffTerms (renderToCDiff blobs)
|
||||||
| Just syntaxParser <- lang >>= syntaxParserForLanguage ->
|
| Just syntaxParser <- lang >>= syntaxParserForLanguage ->
|
||||||
|
Loading…
Reference in New Issue
Block a user