Refactoring: code duplication removed from accessor generators

This commit is contained in:
Mikhael Bogdanov
2013-03-13 12:03:42 +04:00
parent 86f5114b7d
commit d9fd04dd43
32 changed files with 1026 additions and 521 deletions
@@ -0,0 +1,9 @@
package test
val Long.date1: Object = java.util.Date()
internal val Long.date12: Object = java.util.Date()
private val Long.date3: java.util.Date = java.util.Date()
public val Long.date4: java.util.Date = java.util.Date()