View source
enum abstract ModuleCheckPolicy(Int)
package haxe.macro
import haxe.macro.CompilationServer
Available on all platforms
Variables
inlineread onlyCheckFileContentModification:ModuleCheckPolicy = 1
If a file is modified, also checks if its content changed. This check is not free, but useful when .hx files are auto-generated.
inlineread onlyNoCheckFileTimeModification:ModuleCheckPolicy = 0
Disables file modification checks, avoiding some filesystem operations.
inlineread onlyNoCheckShadowing:ModuleCheckPolicy = 3
Disables file shadowing checks. Shadowing can occur when a new file is added to a class-path that has higher priority than the class-path of the current module file.