diff options
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/functions/function.kt | 2 | ||||
-rw-r--r-- | test/data/functions/functionWithParams.kt | 4 | ||||
-rw-r--r-- | test/data/packages/dottedNamePackage.kt | 1 | ||||
-rw-r--r-- | test/data/packages/rootPackage.kt | 0 | ||||
-rw-r--r-- | test/data/packages/simpleNamePackage.kt | 1 |
5 files changed, 6 insertions, 2 deletions
diff --git a/test/data/functions/function.kt b/test/data/functions/function.kt index 878b017b..f8c64f94 100644 --- a/test/data/functions/function.kt +++ b/test/data/functions/function.kt @@ -1,4 +1,4 @@ /** - * doc + * Function fn */ fun fn() {}
\ No newline at end of file diff --git a/test/data/functions/functionWithParams.kt b/test/data/functions/functionWithParams.kt index 9d3a0ad7..135ed399 100644 --- a/test/data/functions/functionWithParams.kt +++ b/test/data/functions/functionWithParams.kt @@ -1,4 +1,6 @@ /** - * doc + * Multiline + * Function + * Documentation */ fun function(x : Int) {}
\ No newline at end of file diff --git a/test/data/packages/dottedNamePackage.kt b/test/data/packages/dottedNamePackage.kt new file mode 100644 index 00000000..38619310 --- /dev/null +++ b/test/data/packages/dottedNamePackage.kt @@ -0,0 +1 @@ +package dot.name
\ No newline at end of file diff --git a/test/data/packages/rootPackage.kt b/test/data/packages/rootPackage.kt new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/data/packages/rootPackage.kt diff --git a/test/data/packages/simpleNamePackage.kt b/test/data/packages/simpleNamePackage.kt new file mode 100644 index 00000000..2c29f4c7 --- /dev/null +++ b/test/data/packages/simpleNamePackage.kt @@ -0,0 +1 @@ +package simple |