Initial commit

This commit is contained in:
Peter Niederwieser
2016-01-19 14:51:19 +01:00
committed by Dan Chao
commit ecad035dca
2972 changed files with 211653 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
module com.package2.Module3
property3: String
function function3(n: Int): String = n.toString()
class Class3 {
property3: String
function function3(n: Int): String = n.toString()
}

View File

@@ -0,0 +1,23 @@
/// Docs for Package 2.
amends "pkl:DocPackageInfo"
name = "com.package2"
version = "4.5.6"
importUri = "modulepath:/com/package2/"
authors {
"package2-publisher@group.apple.com"
}
sourceCode = "https://sources.apple.com/package2/"
sourceCodeUrlScheme = "https://example.com/blob/\(version)%{path}#L%{line}-L%{endLine}"
issueTracker = "https://issues.apple.com/package2/"
dependencies {
new {
name = "pkl"
// use fixed version to avoid churn in expected test outputs
version = "0.24.0"
sourceCode = "https://github.com/apple/\(name)/blob/dev/stdlib/"
sourceCodeUrlScheme = "https://github.com/apple/\(name)/blob/\(version)/stdlib%{path}#L%{line}-L%{endLine}"
documentation = "https://pkl-lang.org/stdlib/\(name)/\(version)/"
}
}