From f523bc14d43286348aeb200bd0554812dc6ef28d Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Mon, 8 Jan 2018 21:29:02 -0400 Subject: - Now using synthesis extensions during synthesis. --- new-luxc/source/luxc/lang/extension.lux | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'new-luxc/source/luxc/lang/extension.lux') diff --git a/new-luxc/source/luxc/lang/extension.lux b/new-luxc/source/luxc/lang/extension.lux index 248bfbb71..ff3a4d24e 100644 --- a/new-luxc/source/luxc/lang/extension.lux +++ b/new-luxc/source/luxc/lang/extension.lux @@ -6,7 +6,9 @@ [text] (coll [dict #+ Dict])) [macro]) - [//]) + [//] + (// ["la" analysis] + ["ls" synthesis])) (exception: #export Unknown-Analysis) (exception: #export Unknown-Synthesis) @@ -24,7 +26,9 @@ (List Code) (Meta Code))) (type: #export Synthesis - (-> (List Code) (Meta Code))) + (-> (-> la.Analysis ls.Synthesis) (List Code) Code)) + +(type: #export Syntheses (Dict Text Synthesis)) (type: #export Translation (-> (List Code) (Meta Code))) @@ -34,7 +38,7 @@ (type: #export Extensions {#analysis (Dict Text Analysis) - #synthesis (Dict Text Synthesis) + #synthesis Syntheses #translation (Dict Text Translation) #statement (Dict Text Statement)}) @@ -75,6 +79,15 @@ [find-statement Statement #statement Unknown-Statement] ) +(do-template [ ] + [(def: #export + (Meta ) + (|> ..get + (:: macro.Monad map (get@ ))))] + + [all-syntheses (Dict Text Synthesis) #synthesis] + ) + (do-template [ ] [(def: #export ( name extension) (-> Text (Meta Unit)) -- cgit v1.2.3