Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: test/ios/swift/MySwiftClass.swift

Issue 1160773005: Support for Swift language and Clang modules for ninja generator. Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: Fixed rare build failure when compiling with modules for multiple archs Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/ios/swift/MySecondSwiftClass.swift ('k') | test/ios/swift/MySwiftFrameworkClass.swift » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import Foundation
2 import swift_framework
3
4 public class MySwiftClass : NSObject {
5 public override init() {
6 objcField = MyObjcClass()
7 swiftField = MySecondSwiftClass()
8 frameworkSwiftField = MySwiftFrameworkClass()
9 frameworkObjcField = MyObjcFrameworkClass()
10 }
11 public var intField: Int = 0
12 var objcField: MyObjcClass
13 var swiftField: MySecondSwiftClass
14 var frameworkSwiftField: MySwiftFrameworkClass
15 var frameworkObjcField: MyObjcFrameworkClass
16 }
OLDNEW
« no previous file with comments | « test/ios/swift/MySecondSwiftClass.swift ('k') | test/ios/swift/MySwiftFrameworkClass.swift » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698