comparison graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/codewriter/AbstractCodeWriter.java @ 13491:807ad2134a6b

Disable assertions that fail under normal usage.
author Chris Seaton <chris.seaton@oracle.com>
date Sun, 22 Dec 2013 20:06:55 +0000
parents 2b9fcffd6f36
children 0d5923064a88
comparison
equal deleted inserted replaced
13472:72e2ec923b7b 13491:807ad2134a6b
680 nextSize = MAX_LINE_LENGTH - lineLength - 2; 680 nextSize = MAX_LINE_LENGTH - lineLength - 2;
681 } 681 }
682 682
683 int end = Math.min(i + nextSize, string.length()); 683 int end = Math.min(i + nextSize, string.length());
684 684
685 assert lineLength + (end - i) + 2 < MAX_LINE_LENGTH; 685 // TODO(CH): fails in normal usage - output ok though
686 // assert lineLength + (end - i) + 2 < MAX_LINE_LENGTH;
687
686 write("\"" + string.substring(i, end) + "\""); 688 write("\"" + string.substring(i, end) + "\"");
687 size = nextSize; 689 size = nextSize;
688 } 690 }
689 691
690 return ""; 692 return "";