From ecebb80bbeb70d4547d6c2caf9739dd1ddaa8edc Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Thu, 3 Mar 2016 12:59:31 +0300 Subject: [PATCH] Added intention description --- .../ToRawStringLiteralIntention/after.kt.template | 3 +++ .../ToRawStringLiteralIntention/before.kt.template | 1 + .../ToRawStringLiteralIntention/description.html | 5 +++++ 3 files changed, 9 insertions(+) create mode 100644 idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template create mode 100644 idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template create mode 100644 idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html diff --git a/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template new file mode 100644 index 00000000000..0f898619ce2 --- /dev/null +++ b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template @@ -0,0 +1,3 @@ +val s = """"Kotlin +is +good!"""" \ No newline at end of file diff --git a/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template new file mode 100644 index 00000000000..ad71958b333 --- /dev/null +++ b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template @@ -0,0 +1 @@ +val s = "\"Kotlin\nis\ngood!\"" \ No newline at end of file diff --git a/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html new file mode 100644 index 00000000000..bccaf9bda7c --- /dev/null +++ b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html @@ -0,0 +1,5 @@ + + +This intention converts ordinary string literal to a raw string literal (one surrounded with triple quote characters). + + \ No newline at end of file