-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Scala versions * Update to RC1, javatime, and scalafix * Save snapshot and RC setting versions * Add SN 0.5.0 and SJS 1.6.0 * Update scala-collection compat to 2.12, drop link stubs, and add URLConnection for stubs * Update to Scala Native 0.5.1 * Update README for 1.7.0 release
- Loading branch information
Showing
4 changed files
with
41 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
sconfig/native/src/main/scala/java/net/URLConnection.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package java.net | ||
|
||
import scalanative.annotation.stub | ||
|
||
class URLConnection { | ||
@stub | ||
def getLastModified(): scala.Long = ??? | ||
@stub | ||
def connect(): Unit = ??? | ||
@stub | ||
def getContentType(): String = ??? | ||
@stub | ||
def getInputStream(): java.io.InputStream = ??? | ||
@stub | ||
def setRequestProperty(key: String, value: String): Unit = ??? | ||
} |