Changeset 47062 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
- Timestamp:
- Aug 11, 2009, 2:30:11 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r46879 r47062 471 471 472 472 SymbolTableEntry entry = symbolTable().get(ident.ustring().rep()); 473 ASSERT(!entry.isNull()); 473 if (entry.isNull()) 474 return 0; 474 475 475 476 return ®isterFor(entry.getIndex());
Note:
See TracChangeset
for help on using the changeset viewer.