src/main/kotlin/org/jetbrains/grammarkit/tasks/GenerateLexerTask.kt [83:97]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Deprecated( message = "The `source` was removed in favour of `sourceFile`.", replaceWith = ReplaceWith("sourceFile"), level = DeprecationLevel.ERROR, ) @get:Internal abstract val source: Property /** * Required. * The source Flex file to generate the lexer from. */ @get:InputFile @get:PathSensitive(PathSensitivity.RELATIVE) abstract val sourceFile: RegularFileProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/kotlin/org/jetbrains/grammarkit/tasks/GenerateParserTask.kt [32:46]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Deprecated( message = "The `source` was removed in favour of `sourceFile`.", replaceWith = ReplaceWith("sourceFile"), level = DeprecationLevel.ERROR, ) @get:Internal abstract val source: Property /** * Required. * The source BNF file to generate the parser from. */ @get:InputFile @get:PathSensitive(PathSensitivity.RELATIVE) abstract val sourceFile: RegularFileProperty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -