Giter Club home page Giter Club logo

Comments (9)

typesanitizer avatar typesanitizer commented on September 15, 2024

Could you provide some more details to help isolate the issue, perhaps an example of a minimal swiftinterface file that demonstrates the problem? What error are you seeing?

In principle, swiftinterface files are also using Swift syntax, so swift-syntax should be able to parse them.

from swift-syntax.

swift-ci avatar swift-ci commented on September 15, 2024

Comment by Jonathan Wight (JIRA)

Yeah that's what I'd expect too.

In practice I can never get them to load without a SIGILL. For example:

```

import Foundation

import SwiftSyntax

let url = URL(fileURLWithPath: "/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk/System/Library/Frameworks/RealityKit.framework/Versions/A/Modules/RealityKit.swiftmodule/x86_64.swiftinterface")

let parsed = try SyntaxParser.parse(url)

try SyntaxVerifier.verify(Syntax(parsed))```

Fatal error: Error raised at top level: unknown syntax node for "
@objc deinit": file /XXXXX/swiftlang/swiftlang-1200.2.10.322/swift/stdlib/public/core/ErrorType.swift, line 200

from swift-syntax.

swift-ci avatar swift-ci commented on September 15, 2024

Comment by Jonathan Wight (JIRA)

Attachment added with sample project.

from swift-syntax.

typesanitizer avatar typesanitizer commented on September 15, 2024

@swift-ci create

from swift-syntax.

akyrtzi avatar akyrtzi commented on September 15, 2024

> Same project cannot parse and dump a .swiftinterface file.

Just to make sure it is clear, "try SyntaxVerifier.verify(Syntax(parsed))" is intended to throw an error if "unknown syntax node" is present (it's a verification mechanism as the name implies), this doesn't mean that "parsing and dumping results in SIGILL". In fact, you will find that you can dump a parsed tree fine even with 'unknown' nodes present.

It is useful to investigate why the 'unknown' syntax node shows up, and thanks for reporting this, but I want to make sure we are precise in what the exact issue is here.

from swift-syntax.

akyrtzi avatar akyrtzi commented on September 15, 2024

Reduced test case:

class Cls { deinit } 

The missing braces for `deinit` cause the 'unknown' node.

from swift-syntax.

akyrtzi avatar akyrtzi commented on September 15, 2024

Some general advice, `.swiftinterface` files are intended to be an implementation detail of the compiler, the fact that they are textual and contain swift source code is an implementation detail, they are not intended to be readable by users or external tools outside the compiler. Please keep this in mind and reach out for the use cases that you have in mind to so we could provide advice.

from swift-syntax.

akyrtzi avatar akyrtzi commented on September 15, 2024

In this particular case it would be useful to still produce a `DeinitializerDecl` even if braces are missing, as part of parser recovery, independent of .swiftinterface files.

from swift-syntax.

CodaFi avatar CodaFi commented on September 15, 2024

Resolved in the new parser by #716

from swift-syntax.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.