Various little changes like cmethd -> method and cfield -> field.
(* Title: HOL/MicroJava/JVM/Store.thy
ID: $Id$
Author: Cornelia Pusch
Copyright 1999 Technische Universitaet Muenchen
The store.
The JVM builds on many notions already defined in Java.
Conform provides notions for the type safety proof of the Bytecode Verifier.
*)
Store = Conform +
syntax
map_apply :: "['a \\<leadsto> 'b,'a] \\<Rightarrow> 'b" ("_ !! _")
translations
"t !! x" == "the (t x)"
constdefs
newref :: "('a \\<leadsto> 'b) \\<Rightarrow> 'a"
"newref s \\<equiv> \\<epsilon>v. s v = None"
end