Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(castor): remove antlr library and use regex instead #104

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AtalaPrismSDK/Castor/Sources/CastorImpl+Public.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ extension CastorImpl: Castor {
/// - Returns: The DID object
/// - Throws: An error if the string is not a valid DID
public func parseDID(str: String) throws -> DID {
try DIDParser(didString: str).parse()
try DID(string: str)
}

// /// createPrismDID creates a DID for a prism (a device or server that acts as a DID owner and controller) using a given master public key and list of services. This function may throw an error if the master public key or services are invalid.
Expand Down
34 changes: 0 additions & 34 deletions AtalaPrismSDK/Castor/Sources/DIDParser/DIDGrammar/DIDAbnf.g4

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

101 changes: 0 additions & 101 deletions AtalaPrismSDK/Castor/Sources/DIDParser/DIDGrammar/DIDAbnfLexer.swift

This file was deleted.

This file was deleted.

Loading
Loading