From 03d942bb95cf1064488ba2c14d9455c19f9c922e Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 14 Jan 2015 20:02:02 +0100 Subject: show signatures for accessors --- test/data/format/accessor.get.md | 12 ++++++++++++ test/data/format/accessor.kt | 5 +++++ test/data/format/accessor.set.md | 12 ++++++++++++ test/data/format/deprecated.class.html | 2 +- 4 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 test/data/format/accessor.get.md create mode 100644 test/data/format/accessor.kt create mode 100644 test/data/format/accessor.set.md (limited to 'test/data/format') diff --git a/test/data/format/accessor.get.md b/test/data/format/accessor.get.md new file mode 100644 index 00000000..b4da2a03 --- /dev/null +++ b/test/data/format/accessor.get.md @@ -0,0 +1,12 @@ +[test](out.md) / [](out.md) / [C](out.md) / [x](out.md) / [get](out.md) + + +# get + + +``` +get(): String +``` + + + diff --git a/test/data/format/accessor.kt b/test/data/format/accessor.kt new file mode 100644 index 00000000..b6ed9624 --- /dev/null +++ b/test/data/format/accessor.kt @@ -0,0 +1,5 @@ +class C() { + var x: String + get() = "" + set(value) { } +} diff --git a/test/data/format/accessor.set.md b/test/data/format/accessor.set.md new file mode 100644 index 00000000..8b9db263 --- /dev/null +++ b/test/data/format/accessor.set.md @@ -0,0 +1,12 @@ +[test](out.md) / [](out.md) / [C](out.md) / [x](out.md) / [set](out.md) + + +# set + + +``` +set(value: String) +``` + + + diff --git a/test/data/format/deprecated.class.html b/test/data/format/deprecated.class.html index 87599082..1442026c 100644 --- a/test/data/format/deprecated.class.html +++ b/test/data/format/deprecated.class.html @@ -38,7 +38,7 @@ get - +get(): Int -- cgit