mirror of
https://github.com/averello/Ents.git
synced 2026-03-01 18:23:40 +01:00
15 lines
336 B
Swift
15 lines
336 B
Swift
//
|
|
// CompileConditionalBlock.swift
|
|
// Ents
|
|
//
|
|
// Created by Georges Boumis on 26/08/2016.
|
|
// Copyright © 2016-2019 Georges Boumis.
|
|
// Licensed under MIT (https://github.com/averello/Ents/blob/master/LICENSE)
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol CompileConditionalBlock {
|
|
func perform(_ block: () throws -> Void) rethrows
|
|
}
|