// // Copyright 2017 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // FindMain.cpp: Find the main() function definition in a given AST. #include "compiler/translator/tree_util/FindMain.h" #include "compiler/translator/IntermNode.h" #include "compiler/translator/Symbol.h" namespace sh { size_t FindMainIndex(TIntermBlock *root) { … } TIntermFunctionDefinition *FindMain(TIntermBlock *root) { … } TIntermBlock *FindMainBody(TIntermBlock *root) { … } } // namespace sh