gzdoom-gles/src/scripting
alexey.lysiuk a2d52f4958 - added ability to specify deprecation messages in ZScript
It's an optional extension of deprecated keyword:
    deprecated("2.4", "use ModernFunction instead") int OldFunction();
    deprecated("3.5", "use ModernVariable instead") int OldVariable;

Usage of such members will produce the following report:
    Script warning, ":zscript.txt" line 123:
    Accessing deprecated function OldFunction - deprecated since 2.4.0, use ModernFunction instead
    Script warning, ":zscript.txt" line 456:
    Accessing deprecated member variable OldVariable - deprecated since 3.5.0, use ModernVariable instead

# Conflicts:
#	src/scripting/zscript/zcc_compile.cpp
2019-08-28 21:49:20 +02:00
..
backend - added ability to specify deprecation messages in ZScript 2019-08-28 21:49:20 +02:00
decorate - fixed crash on message output during decorate parsing 2019-05-29 22:14:43 +02:00
vm AsmJit update 2019-08-20 13:08:18 +02:00
zscript - added ability to specify deprecation messages in ZScript 2019-08-28 21:49:20 +02:00
symbols.cpp - define the built-in functions defined in codegen.cpp through the regular interface instead uf just hacking them into the symbol table with incompletely set up data. 2019-04-15 22:30:01 +02:00
symbols.h - added ability to specify deprecation messages in ZScript 2019-08-28 21:49:20 +02:00
thingdef.cpp - added validation for presence of drop item classes 2019-07-12 22:11:54 +02:00
thingdef.h - fixed code emission for constant ZScript function arguments 2019-04-27 12:43:22 +02:00
thingdef_data.cpp - fixed the extremely long standing bug that Lost Souls didn't reacquire their target when slamming into something. 2019-08-11 14:28:51 +02:00
thingdef_properties.cpp - removed all remaining native parts of APlayerPawn. 2019-04-26 01:20:02 +02:00
types.cpp - got rid of FNameNoInit and made the default constructor of FName non-initializing. 2018-08-19 10:36:10 +02:00
types.h - fixed compilation of targets with optimization 2018-11-16 21:33:11 +01:00
vmiterators.cpp - fixed: Direct native functions for the JIT compiler may not return bool. 2019-04-17 16:24:07 +02:00
vmthunks.cpp - added option to print a map author's name on the summary screen 2019-08-06 18:46:23 +02:00
vmthunks_actors.cpp Added A_SoundPitch and an optional pitch parameter to A_PlaySound and S_Sound. 2019-07-25 00:06:12 +02:00