From 002ff3cc9a6479695034b556f15ef4d9fa4bc6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 1 Mar 2016 18:09:48 +0100 Subject: Revert "Merge pull request #3814 from est31/iterators_for_for" This reverts commit adf50568890cefb5fc354dbc1b21c4140bb410f9, reversing changes made to ee2bc87c0ef3cc1a432655ff935e60f32977904d. --- modules/gdscript/gd_parser.cpp | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'modules/gdscript/gd_parser.cpp') diff --git a/modules/gdscript/gd_parser.cpp b/modules/gdscript/gd_parser.cpp index 4b0164d8a2..4f572b7b6e 100644 --- a/modules/gdscript/gd_parser.cpp +++ b/modules/gdscript/gd_parser.cpp @@ -1779,20 +1779,6 @@ void GDParser::_parse_block(BlockNode *p_block,bool p_static) { return; } - // Little optimisation for common usage "for i in range(...):": - // don't create and initialize a possibly huge array as range() - // would do, but instead create an iterator using xrange() - if (container->type == Node::TYPE_OPERATOR) { - OperatorNode *op = static_cast(container); - if (op->arguments.size() > 0 && - op->arguments[0]->type == Node::TYPE_BUILT_IN_FUNCTION) { - BuiltInFunctionNode *c = static_cast(op->arguments[0]); - if (c->function == GDFunctions::GEN_RANGE) { - c->function = GDFunctions::GEN_XRANGE; - } - } - } - ControlFlowNode *cf_for = alloc_node(); cf_for->cf_type=ControlFlowNode::CF_FOR; -- cgit v1.2.3