function isContract(address addr) private returns (bool) {
uint _size;
assembly { _size := extcodesize(addr) }
return _size > 0;
}
}
```
### Abstract Syntax Tree
[Click Here](https://astexplorer.net/#/gist/1c6ce7d9847443b09f58313a99abc970/0c935a817c3b9a7a5f8e5c22913e2a72cb518830) to view the AST for the above code. Code generated from AST Explorer using _solidity-parser-antlr-0.4.11_