1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 00:12:29 +03:00

Use the shared helpers for TypeScript.

This commit is contained in:
Rob Rix 2018-05-10 09:59:31 -04:00
parent 6e37f24cee
commit 9ec588ed3c

View File

@ -23,8 +23,8 @@ spec = parallel $ do
res <- snd <$> evaluate "main1.ts" res <- snd <$> evaluate "main1.ts"
Env.names (environment res) `shouldBe` [ "b", "z" ] Env.names (environment res) `shouldBe` [ "b", "z" ]
(derefName "b" res >>= deNamespace) `shouldBe` Just ("b", [ "baz", "foo" ]) (derefQName (heap res) ("b" :| []) (environment res) >>= deNamespace) `shouldBe` Just ("b", [ "baz", "foo" ])
(derefName "z" res >>= deNamespace) `shouldBe` Just ("z", [ "baz", "foo" ]) (derefQName (heap res) ("z" :| []) (environment res) >>= deNamespace) `shouldBe` Just ("z", [ "baz", "foo" ])
it "side effect only imports" $ do it "side effect only imports" $ do
env <- environment . snd <$> evaluate "main2.ts" env <- environment . snd <$> evaluate "main2.ts"
@ -42,7 +42,3 @@ spec = parallel $ do
fixtures = "test/fixtures/typescript/analysis/" fixtures = "test/fixtures/typescript/analysis/"
evaluate entry = evalTypeScriptProject (fixtures <> entry) evaluate entry = evalTypeScriptProject (fixtures <> entry)
evalTypeScriptProject path = testEvaluating <$> evaluateProject typescriptParser Language.TypeScript Nothing path evalTypeScriptProject path = testEvaluating <$> evaluateProject typescriptParser Language.TypeScript Nothing path
derefName :: Name -> EvaluatingState Precise (Value Precise) -> Maybe (Value Precise)
derefName name res = Env.lookup name (environment res) >>= flip heapLookup (heap res) >>= unLatest
deNamespace :: Value Precise -> Maybe (Name, [Name])
deNamespace = fmap (namespaceName &&& Env.names . namespaceScope) . (prjValue :: Value Precise -> Maybe (Namespace Precise (Value Precise)))