From 3b1c314c3596eabc8c423a9c270c315ecf14158c Mon Sep 17 00:00:00 2001 From: vms Date: Wed, 17 Oct 2018 12:36:55 +0300 Subject: [PATCH] fix some comments in FuncContext --- .../src/main/kotlin/asmble/compile/jvm/FuncContext.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/src/main/kotlin/asmble/compile/jvm/FuncContext.kt b/compiler/src/main/kotlin/asmble/compile/jvm/FuncContext.kt index ca3dd74..d185a66 100644 --- a/compiler/src/main/kotlin/asmble/compile/jvm/FuncContext.kt +++ b/compiler/src/main/kotlin/asmble/compile/jvm/FuncContext.kt @@ -4,13 +4,13 @@ import asmble.ast.Node 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 insns A list of instructions - * @param memIsLocalVar If true then function use only local variables and don't load - * and store from memory. + * @param insns instructions list + * @param memIsLocalVar true if function uses only local variables and doesn't load + * or store to/from memory. */ data class FuncContext( val cls: ClsContext,