U75957
06/07/2019, 2:53 PMconst val TEST1 = "test1"
object Test2 {
const val TEST2 = "test2"
}
class Test {
object Test3 {
const val TEST3 = "test3"
}
}
ribesg
06/07/2019, 3:07 PMU75957
06/07/2019, 3:15 PMval
U75957
06/07/2019, 3:21 PMconst enum
in TypeScript works. Without problem.Svyatoslav Kuzmich [JB]
06/07/2019, 3:30 PMU75957
06/07/2019, 3:49 PMSvyatoslav Kuzmich [JB]
06/07/2019, 3:53 PMIt also can be used to complicate reverse engineering.And complicate debug 🙂
Svyatoslav Kuzmich [JB]
06/07/2019, 3:55 PMU75957
06/07/2019, 4:06 PMSvyatoslav Kuzmich [JB]
06/07/2019, 5:24 PMOr are you talking that with IR compiler plugins I could easy create plugin which will replace such constants with their valueEasy.