/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/modules/scripting/Interpreter/Scope.dm
16 строк
412 B
PJB3005
All the EOLs are now LF.
17 янв 2016, 01:28
17 янв 2016, 01:28
1a2f9ab
Код
Авторство
О чём код?
/* Class: scope A runtime instance of a block. Used internally by the interpreter. */ /datum/scope var/datum/scope/parent = null var/datum/node/BlockDefinition/block var/list/functions var/list/variables /datum/scope/New(var/datum/node/BlockDefinition/B, var/datum/scope/parent) src.block = B src.parent = parent src.variables = B.initial_variables.Copy() src.functions = B.functions.Copy() . = ..()