* @brief Allocates a new global variable and returns the integer assigned to it * * @param Token * @return int */
| 4401 | * @return int |
| 4402 | */ |
| 4403 | int |
| 4404 | NewGlobalIdentifier(PSCRIPT_ENGINE_TOKEN Token) |
| 4405 | { |
| 4406 | PSCRIPT_ENGINE_TOKEN CopiedToken = CopyToken(Token); |
| 4407 | GlobalIdTable = Push(GlobalIdTable, CopiedToken); |
| 4408 | return GlobalIdTable->Pointer - 1; |
| 4409 | } |
| 4410 | |
| 4411 | /** |
| 4412 | * @brief |