fix some comments in FuncContext

This commit is contained in:
vms 2018-10-17 12:36:55 +03:00
parent f1a2d14463
commit 3b1c314c35

View File

@ -4,13 +4,13 @@ import asmble.ast.Node
import asmble.util.Logger import asmble.util.Logger
/** /**
* Jvm context of execution a function. * Jvm context of the function execution.
* *
* @param cls Class execution context * @param cls class execution context
* @param node Ast of this function * @param node Ast of this function
* @param insns A list of instructions * @param insns instructions list
* @param memIsLocalVar If true then function use only local variables and don't load * @param memIsLocalVar true if function uses only local variables and doesn't load
* and store from memory. * or store to/from memory.
*/ */
data class FuncContext( data class FuncContext(
val cls: ClsContext, val cls: ClsContext,