Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

loop arguments added to trace #203

Merged
merged 3 commits into from
Mar 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/NITTA/LuaFrontend.hs
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,13 @@ alg2graph LuaAlgBuilder{algGraph, algLatestLuaValueInstance, algVars} = flip exe
lua2functions src =
let syntaxTree = getLuaBlockFromSources src
luaAlgBuilder = buildAlg syntaxTree
frTrace = getFrTrace $ algTraceFuncs luaAlgBuilder
frTrace = getFrTrace $ getAllTraceFuncs luaAlgBuilder
in FrontendResult{frDataFlow = alg2graph luaAlgBuilder, frTrace = frTrace, frPrettyLog = prettyLog frTrace}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here you can use NamedFieldPuns:

     in FrontendResult{frDataFlow = alg2graph luaAlgBuilder, frTrace, frPrettyLog = prettyLog frTrace}
Write

where
getAllTraceFuncs algBuilder =
let traceFuncs = algTraceFuncs algBuilder
startupArgNames = map (fst . snd) $ HM.toList $ algStartupArgs algBuilder
ryukzak marked this conversation as resolved.
Show resolved Hide resolved
in map (\name -> ([name <> "^0"], defaultFmt)) startupArgNames <> traceFuncs

getFrTrace traceFuncs = [TraceVar fmt var | (vars, fmt) <- traceFuncs, var <- vars]

Expand Down