We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f68e11 commit ec6a782Copy full SHA for ec6a782
src/haxelib/VersionData.hx
@@ -62,13 +62,17 @@ class VcsData {
62
url;
63
}
64
65
+ /**
66
+ Returns whether this vcs data will always reproduce an identical installation
67
+ (i.e. the commit id is locked down)
68
+ **/
69
public function isReproducible() {
70
return commit != null;
71
72
73
/**
- Returns an object containing the filled-in VcsData fields,
- without the empty ones.
74
+ Returns an anonymous object containing only the non-null, non-empty VcsData fields,
75
+ excluding the null/empty ones.
76
**/
77
public function getCleaned() {
78
var data:{
0 commit comments