This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: generic | |
matrix: | |
include: | |
# Test Ubuntu Linux 14.04 / Swift 3.0.2 | |
- os: linux | |
dist: trusty | |
sudo: required | |
# Test Xcode 8.3 / Swift 3.1.1 | |
- os: osx | |
osx_image: xcode8.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BUILD_DIR=./.build | |
default: build | |
build: | |
swift build | |
test: | |
swift test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ArbitraryConfigurationData { | |
// content units references | |
} | |
extension Environment { | |
class func bootstrap(with configuration: ArbitraryConfigurationData) { | |
Environment.shared = Environment(with: configuration) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ArbitraryConfigurationData { | |
// content units references | |
} | |
extension Environment { | |
class func bootstrap(with configuration: ArbitraryConfigurationData) { | |
Environment.shared = Environment(with: configuration) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ControllerChain.swift | |
// Pobjects | |
// | |
// Created by Endoral Work on 4/11/18. | |
// Copyright © 2018 endoralwork-idsi. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// XibModularView.swift | |
// Pobjects | |
// | |
// Created by Isaac Weisberg on 4/5/18. | |
// Copyright © 2018 Isaac Weisberg. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// XibModularView.swift | |
// Pobjects | |
// | |
// Created by Isaac Weisberg on 4/5/18. | |
// Copyright © 2018 Isaac Weisberg. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const l = console.log | |
class Asdf { | |
memberProp = 3450 | |
methodA = () => { | |
const a = this.memberProp | |
return a | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC=clang | |
LD=ld | |
LDFLAGS=-lc | |
CCFLAGS= | |
EXEC=bin/a.out | |
OBJECTS=src/main.o \ | |
default: run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func foo() -> Any { | |
class Bar { | |
let baz: Int | |
init(_ value: Int) { | |
baz = value | |
} | |
} | |
let bar = Bar(3) |
OlderNewer