[AltJIT] Removes unnecessary ALTErrorKeys.h/.m

Was originally added because AltJIT couldn’t link with AltSign, which is not true anymore.
This commit is contained in:
Riley Testut
2023-09-08 13:47:07 -05:00
committed by Magesh K
parent b760418252
commit 4410775aec
4 changed files with 0 additions and 35 deletions

View File

@@ -2,8 +2,6 @@
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "ALTErrorKeys.h"
// Shared
#import "ALTWrappedError.h"
#import "NSError+ALTServerError.h"

View File

@@ -1,14 +0,0 @@
//
// ALTErrorKeys.h
// AltJIT
//
// Created by Riley Testut on 9/1/23.
// Copyright © 2023 Riley Testut. All rights reserved.
//
@import Foundation;
// Can't import AltSign (for reasons), so re-declare these constants here instead.
extern NSErrorUserInfoKey const ALTSourceFileErrorKey;
extern NSErrorUserInfoKey const ALTSourceLineErrorKey;
extern NSErrorUserInfoKey const ALTAppNameErrorKey;

View File

@@ -1,13 +0,0 @@
//
// ALTErrorKeys.m
// AltJIT
//
// Created by Riley Testut on 9/1/23.
// Copyright © 2023 Riley Testut. All rights reserved.
//
#import "ALTErrorKeys.h"
NSErrorUserInfoKey const ALTSourceFileErrorKey = @"ALTSourceFile";
NSErrorUserInfoKey const ALTSourceLineErrorKey = @"ALTSourceLine";
NSErrorUserInfoKey const ALTAppNameErrorKey = @"appName";