Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 final bool inDebugBuild = _initInDebugBuild(); | |
| 3 | |
| 4 bool _initInDebugBuild() { | |
| 5 bool _inDebug = false; | |
| 6 bool setAssert() { | |
| 7 _inDebug = true; | |
| 8 return true; | |
| 9 } | |
| 10 assert(setAssert()); | |
| 11 return _inDebug; | |
| 12 } | |
| OLD | NEW |