Don't use bitwise operations on this nmber. It may be more than 32 bits.

This commit is contained in:
Cyrus Najmabadi 2014-11-26 12:06:07 -08:00
parent 70cabf07e3
commit 5f2da4afc8

View file

@ -300,7 +300,7 @@ module TypeScript {
}
if ((info & SyntaxNodeConstants.DataComputed) === 0) {
info |= computeData(element);
info += computeData(element);
dataElement.__data = info;
}