Lines Matching refs:decl
792 void BytecodeGenerator::VisitVariableDeclaration(VariableDeclaration* decl) {
793 Variable* variable = decl->proxy()->var();
797 FeedbackVectorSlot slot = decl->proxy()->VariableFeedbackSlot();
846 void BytecodeGenerator::VisitFunctionDeclaration(FunctionDeclaration* decl) {
847 Variable* variable = decl->proxy()->var();
851 FeedbackVectorSlot slot = decl->proxy()->VariableFeedbackSlot();
852 globals_builder()->AddFunctionDeclaration(slot, decl->fun());
857 VisitForAccumulatorValue(decl->fun());
865 VisitForAccumulatorValue(decl->fun());
875 VisitForAccumulatorValue(decl->fun());
883 VisitForAccumulatorValue(decl->fun());
913 for (Declaration* decl : *declarations) {
915 Visit(decl);