hasProperty abstract method

bool hasProperty(
  1. Object o,
  2. Object name
)

Use JS utils to check if a js object has a property.

this will effectively result into name in o in js.

Implementation

bool hasProperty(final Object o, final Object name);