mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-04 01:20:37 +00:00
28 lines
1,003 B
Rust
28 lines
1,003 B
Rust
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
use crate::Cli;
|
|
use i_slint_compiler::parser::{SyntaxKind, SyntaxNode};
|
|
use std::io::Write;
|
|
|
|
pub(crate) fn fold_node(
|
|
node: &SyntaxNode,
|
|
file: &mut impl Write,
|
|
_state: &mut crate::State,
|
|
_args: &Cli,
|
|
) -> std::io::Result<bool> {
|
|
if node.kind() == SyntaxKind::PropertyDeclaration
|
|
&& node
|
|
.parent()
|
|
.and_then(|n| n.parent())
|
|
.map_or(false, |n| n.kind() == SyntaxKind::Component)
|
|
{
|
|
// check that the first identifier is "property" as opposed to an already converted "in-out" token
|
|
if node.child_token(SyntaxKind::Identifier).map_or(false, |t| t.text() == "property") {
|
|
// Consider that all property are in-out, because we don't do enough analysis in the slint-updater to know
|
|
// if they should be private
|
|
write!(file, "in-out ")?;
|
|
}
|
|
}
|
|
Ok(false)
|
|
}
|