MCPcopy Index your code
hub / github.com/apache/groovy / getProperty

Method getProperty

src/main/java/groovy/lang/Script.java:72–79  ·  view source on GitHub ↗

{@inheritDoc}

(String property)

Source from the content-addressed store, hash-verified

70
71 /** {@inheritDoc} */
72 @Override
73 public Object getProperty(String property) {
74 try {
75 return binding.getVariable(property);
76 } catch (MissingPropertyException mpe) {
77 return super.getProperty(property);
78 }
79 }
80
81 /** {@inheritDoc} */
82 @Override

Callers 4

invokeMethodMethod · 0.95
printlnMethod · 0.95
printMethod · 0.95
printfMethod · 0.95

Calls 2

getPropertyMethod · 0.65
getVariableMethod · 0.45

Tested by

no test coverage detected