Property definitions

glesv2 $ GLEnum :: defaultinit
# General type for OpenGL enumerations
extern class GLEnum `{ GLenum `}

	redef fun hash `{ return self; `}

	redef fun ==(o) do return o != null and is_same_type(o) and o.hash == self.hash
end
lib/glesv2/glesv2.nit:503,1--509,3