Home | History | Annotate | Download | only in AST

Lines Matching refs:Version

32   /// Represents the version that this specifier requires. If the host OS
33 /// version is greater than or equal to Version, the @available will evaluate
35 VersionTuple Version;
37 /// Name of the platform that Version corresponds to.
43 AvailabilitySpec(VersionTuple Version, StringRef Platform,
45 : Version(Version), Platform(Platform), BeginLoc(BeginLoc),
52 VersionTuple getVersion() const { return Version; }
58 bool isOtherPlatformSpec() const { return Version.empty(); }