src/commonMain/kotlin/org/intellij/lang/annotations/RegExp.kt [16:40]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - package org.intellij.lang.annotations import org.jetbrains.annotations.NonNls /** * Specifies that an element of the program represents a string that is a regular expression text supported * by [java.util.regex.Pattern]. * Code editors may use this annotation to enable syntax highlighting, code completion and other features * inside the literals that assigned to the annotated variables, passed as arguments to the annotated parameters, * or returned from the annotated methods. * * @see Language */ @MustBeDocumented @Retention(AnnotationRetention.BINARY) @Target( AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.FIELD, AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.LOCAL_VARIABLE, AnnotationTarget.ANNOTATION_CLASS ) @Language("RegExp") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/nonJvmMain/kotlin/org/intellij/lang/annotations/RegExp.kt [16:40]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - package org.intellij.lang.annotations import org.jetbrains.annotations.NonNls /** * Specifies that an element of the program represents a string that is a regular expression text supported * by [java.util.regex.Pattern]. * Code editors may use this annotation to enable syntax highlighting, code completion and other features * inside the literals that assigned to the annotated variables, passed as arguments to the annotated parameters, * or returned from the annotated methods. * * @see Language */ @MustBeDocumented @Retention(AnnotationRetention.BINARY) @Target( AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.FIELD, AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.LOCAL_VARIABLE, AnnotationTarget.ANNOTATION_CLASS ) @Language("RegExp") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -