! Copyright (C) 2007, 2009 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: arrays byte-arrays byte-vectors generic assocs hashtables io.binary kernel kernel.private math namespaces make sequences words quotations strings alien.accessors alien.strings layouts system combinators math.bitwise math.order accessors growable fry generalizations compiler.constants ; IN: compiler.codegen.fixup ! Owner SYMBOL: compiling-word ! Literal table SYMBOL: literal-table : add-literal ( obj -- ) literal-table get push ; ! Labels SYMBOL: label-table TUPLE: label offset ; :