GithubHelp home page GithubHelp logo

Comments (3)

EPashkin avatar EPashkin commented on June 14, 2024

Its really normal.
GFile belong to Gio and so don't checked for ignored as we though that all other classes in MAIN_NAMESPACE will be manual. https://github.com/gtk-rs/gir/blob/master/src/analysis/rust_type.rs#L92-L101.
We can add checks in MAIN_NAMESPACE also, but then we need add many manuals to .gir.

from gir.

gkoz avatar gkoz commented on June 14, 2024

I haven't ever noticed a manual default for classes and the relevant piece seems

Class(..) |
Interface (..) => {
match direction {
_ if env.type_status(&type_id.full_name(&env.library)).ignored() => {
Err(format!("/*Ignored*/{}", rust_type.as_str()))
}
library::ParameterDirection::In |
library::ParameterDirection::Out |
library::ParameterDirection::Return => rust_type,
_ => Err(format!("/*Unimplemented*/{}", rust_type.as_str())),
}
}
List(..) |
SList(..) |
CArray(..) => {
match direction {
library::ParameterDirection::In |
library::ParameterDirection::Return => rust_type,
_ => Err(format!("/*Unimplemented*/{}", rust_type.as_str())),
}
}
wherein ignored classes in parameters return error but not inside a container. Perhaps the check on line 180 should be moved to the rust_type_full function.

from gir.

EPashkin avatar EPashkin commented on June 14, 2024

Manual not defaults for object in main namespace, it just not checked for ignored in rust_type_full.
Argee that adding `/Ignored/ better placed there.

from gir.

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.