View | Details | Raw Unified | Return to bug 133738
Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/ast/LongLiteral.java (-1 / +2 lines)
Lines 140-146 Link Here
140
			(source[15] == '5') &&
140
			(source[15] == '5') &&
141
			(source[16] == '8') &&			
141
			(source[16] == '8') &&			
142
			(source[17] == '0') &&
142
			(source[17] == '0') &&
143
			(source[18] == '8'));
143
			(source[18] == '8') &&
144
			(((this.bits & ASTNode.ParenthesizedMASK) >> ASTNode.ParenthesizedSHIFT) == 0));
144
}
145
}
145
public TypeBinding resolveType(BlockScope scope) {
146
public TypeBinding resolveType(BlockScope scope) {
146
	// the format may be incorrect while the scanner could detect
147
	// the format may be incorrect while the scanner could detect
(-)compiler/org/eclipse/jdt/internal/compiler/ast/IntLiteral.java (-1 / +3 lines)
Lines 119-125 Link Here
119
			(source[6] == '3') &&
119
			(source[6] == '3') &&
120
			(source[7] == '6') &&			
120
			(source[7] == '6') &&			
121
			(source[8] == '4') &&
121
			(source[8] == '4') &&
122
			(source[9] == '8'));}
122
			(source[9] == '8') &&
123
			(((this.bits & ASTNode.ParenthesizedMASK) >> ASTNode.ParenthesizedSHIFT) == 0));
124
}
123
public TypeBinding resolveType(BlockScope scope) {
125
public TypeBinding resolveType(BlockScope scope) {
124
	// the format may be incorrect while the scanner could detect
126
	// the format may be incorrect while the scanner could detect
125
	// such an error only on painfull tests...easier and faster here
127
	// such an error only on painfull tests...easier and faster here

Return to bug 133738