Added note on name resolution for correct stack offset mapping

This commit is contained in:
Tristan B. Kildaire 2021-11-09 15:51:08 +02:00
parent de261ec511
commit 7fe3ea342c
1 changed files with 9 additions and 0 deletions

View File

@ -263,6 +263,15 @@ public final class DCodeEmitter : CodeEmitter
/* TODO: We need to build map of stakc positions, maybe not */
/**
* FIXME: We must grab the Context object here to get the Container
* to be able to resolve the absolute path of this variable using
* the grand resolver (solved, as of 9th November we have context)
*
* FIXME: NOT ALL HAVE CONTEXT YET!!!
*/
gprintln(varDecInstr.context);
pushVariable(varDecInstr.varName, varDecInstr.length);
}
/**