working with import statements improved

This commit is contained in:
Sergey Ignatov
2011-11-16 12:57:13 +04:00
parent bbcf8be5bf
commit d0c8b104d5
8 changed files with 35 additions and 25 deletions
@@ -0,0 +1,5 @@
package test;
import namespace.as.type.val.var.fun.is.in.object.when.trait.This;
class Test {}
@@ -0,0 +1,5 @@
namespace test {
import `namespace`.`as`.`type`.`val`.`var`.`fun`.`is`.`in`.`object`.`when`.`trait`.`This`
open class Test() {
}
}
@@ -0,0 +1,5 @@
package org.jetbrains.jet.j2k;
import org.jetbrains.annotations.*;
public class Converter {}
@@ -0,0 +1,5 @@
namespace org.jetbrains.jet.j2k {
import org.jetbrains.annotations.*
public open class Converter() {
}
}
@@ -0,0 +1,5 @@
package org.jetbrains.jet.j2k;
import org.jetbrains.annotations.NotNull;
public class Converter {}
@@ -0,0 +1,5 @@
namespace org.jetbrains.jet.j2k {
import org.jetbrains.annotations.NotNull
public open class Converter() {
}
}