HomeForumSourceResearchGuide
Sign in to contribute to source. how it works
Type definition file util.compiler.LiteralsTable by barry
expand copy to clipboardexpand
uses OpParser
uses io.File

data LiteralEntry {
	byte value[]
	int offset
}

interface LiteralsTable {

	LiteralsTable()
	
	void add(store byte value[])
	byte[] getBytes()

	void setOffset(int offset)
	int getOffsetOf(byte value[])

	LiteralEntry[] getOffsets()
	
	}
Revision history
To propose a new revision to this entity, use dana source put -ut your/new/version.dn -n util.compiler.LiteralsTable -m "reason for update" -u yourUsername
Version 1 (this version) by barry
Notes for this version: New compiler components