src/HOL/Codegenerator_Test/Generate_Pretty.thy
author haftmann
Wed, 14 Jul 2010 15:49:29 +0200
changeset 37824 365e37fe93f3
parent 37819 000049335247
child 37825 adc1143bc1a8
permissions -rw-r--r--
added Isar syntax for code checking


(* Author: Florian Haftmann, TU Muenchen *)

header {* Pervasive test of code generator using pretty literals *}

theory Generate_Pretty
imports Candidates_Pretty
begin

lemma [code, code del]: "nat_of_char = nat_of_char" ..
lemma [code, code del]: "char_of_nat = char_of_nat" ..
lemma [code, code del]: "(less_eq :: char \<Rightarrow> _) = less_eq" ..
lemma [code, code del]: "(less :: char \<Rightarrow> _) = less" ..

subsection {* Check whether generated code compiles *}

text {*
  If any of the checks fails, inspect the code generated
  by a corresponding @{text export_code} command.
*}

export_code "*" checking SML OCaml Haskell Scala

end