This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Created 2019-02-08T18:13:02.112Z | |
https://github.com/AugurProject/augur | |
-------------------------------------------------------------------------------- | |
Language files blank comment code | |
-------------------------------------------------------------------------------- | |
JavaScript 949 14160 24204 118573 | |
JSON 78 0 0 83236 | |
JSX 187 2409 216 27000 | |
TypeScript 245 2381 244 19368 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contract Inconsistency { | |
struct Value { | |
uint badnum; | |
uint number; | |
} | |
struct Container { | |
uint[] valueIndices; | |
Value[] values; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo(object): | |
def __init__(self): | |
noop = True | |
def __repr__(self): | |
return "using __repr__" | |
def __str__(self): | |
return "using __str__" |