interface
| 6016 | |
| 6017 | // interface |
| 6018 | const char *asCContext::GetVarDeclaration(asUINT varIndex, asUINT stackLevel, bool includeNamespace) |
| 6019 | { |
| 6020 | asIScriptFunction *func = GetFunction(stackLevel); |
| 6021 | if( func == 0 ) return 0; |
| 6022 | |
| 6023 | return func->GetVarDecl(varIndex, includeNamespace); |
| 6024 | } |
| 6025 | |
| 6026 | #ifdef AS_DEPRECATED |
| 6027 | // interface |