(* Title: Jive Data and Store Model Author: Norbert Schirmer <schirmer at informatik.tu-muenchen.de> and Nicole Rauch <rauch at informatik.uni-kl.de>, 2005 Maintainer: Nicole Rauch <rauch at informatik.uni-kl.de> License: LGPL *) section ‹The Formalization of JML Operators› theory JML imports "../Isabelle_Store/StoreProperties" begin text ‹JML operators that are to be used in Hoare formulae can be formalized here. › definition instanceof :: "Value ⇒ Javatype ⇒ bool" ("_ @instanceof _") where "instanceof v t = (typeof v ≤ t)" end