VDL codegen for Swift.

The codegen is largely complete. The following are missing:

- Generating const values for type Any
- vdl.Type support for VOM reflection/introspection
- TypeObject support, which requires vdl.Type
- Param support for Errors
- RPC support, which requires VOM.
- Proper integration with Xcode.

Reach:
- A post-process code re-formatter to make the generated code have
  the correct spacing, etc.

Notes:
- Currently v23 won't compile until we have support for migrating
  away from v23's types that use reserved words in Swift. This
  will come in another CL.
- We don't support the fixed length VDL type explicitly -- instead
  that gets deferred to VOM. The reason is that Swift's type system
  cannot express a fixed length array, so we can only error at
  runtime. If we are to error at runtime, then we must either wrap
  arrays and monitor their length, or use getter/setters to monitor
  the length there, or enforce at VOM. The last option is currently
  preferrable as it allows for VDL generated code to be more idiomatic
  by directly using Arrays. This might change in the future.

MultiPart: 4/4
Change-Id: Ic5348e8a92f6ce26ae68be0f47227e4c974a3020
diff --git a/jiri-swift/build_framework.go b/jiri-swift/build_framework.go
index e490a50..aa886c6 100644
--- a/jiri-swift/build_framework.go
+++ b/jiri-swift/build_framework.go
@@ -37,7 +37,6 @@
 
 func buildUniversalFramework(jirix *jiri.X, xcodeTarget string) error {
 	fatBinaryPath := filepath.Join(flagOutDirSwift, frameworkName, frameworkBinaryName)
-
 	didCopyFramework := false
 	for _, targetArch := range targetArchs {
 		buildDir, err := buildSingleFramework(jirix, xcodeTarget, targetArch)