Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pvojtechovsky committed Jun 27, 2018
1 parent 7dfeb7c commit 5affa46
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,7 @@ public boolean visit(BreakStatement breakStatement, BlockScope scope) {
@Override
public boolean visit(CastExpression castExpression, BlockScope scope) {
CastInfo ci = new CastInfo();
//the 8 bits from 21 to 28 represents number of enclosing brackets
ci.nrOfBrackets = ((castExpression.bits >>> 21) & 0xF);
ci.typeRef = this.references.buildTypeReference(castExpression.type, scope, true);
context.casts.add(ci);
Expand Down

0 comments on commit 5affa46

Please sign in to comment.