aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/console')
-rw-r--r--crates/shirabe-external-packages/src/symfony/console/helper/table.rs13
1 files changed, 10 insertions, 3 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/helper/table.rs b/crates/shirabe-external-packages/src/symfony/console/helper/table.rs
index 1167d63..bc426f6 100644
--- a/crates/shirabe-external-packages/src/symfony/console/helper/table.rs
+++ b/crates/shirabe-external-packages/src/symfony/console/helper/table.rs
@@ -14,6 +14,7 @@ use crate::symfony::console::helper::table_style::TableStyle;
use crate::symfony::console::output::console_section_output::ConsoleSectionOutput;
use crate::symfony::console::output::output_interface::OutputInterface;
use indexmap::IndexMap;
+use shirabe_php_shim::AsAny;
use shirabe_php_shim::PhpMixed;
use std::cell::RefCell;
use std::rc::Rc;
@@ -1248,7 +1249,9 @@ impl Table {
fn formatter_is_wrappable(_output: &Rc<RefCell<dyn OutputInterface>>) -> bool {
// PHP: $this->output->getFormatter() instanceof WrappableOutputFormatterInterface
- // TODO(phase-b): trait-to-trait instanceof check requires concrete formatter knowledge.
+ // TODO(phase-c/d): instanceof on `dyn OutputFormatterInterface` needs an AsAny supertrait
+ // on OutputFormatterInterface to downcast to the concrete wrappable formatter; adding it
+ // would touch output_formatter_interface.rs, which is out of scope for this file.
let _ = std::any::type_name::<dyn WrappableOutputFormatterInterface>();
todo!()
}
@@ -1260,9 +1263,13 @@ impl Table {
Helper::remove_decoration(&mut *formatter, string)
}
- fn output_is_console_section(_output: &Rc<RefCell<dyn OutputInterface>>) -> bool {
+ fn output_is_console_section(output: &Rc<RefCell<dyn OutputInterface>>) -> bool {
// PHP: $this->output instanceof ConsoleSectionOutput
- todo!()
+ let borrowed = output.borrow();
+ (*borrowed)
+ .as_any()
+ .downcast_ref::<ConsoleSectionOutput>()
+ .is_some()
}
fn is_divider(_row: &PhpMixed, _divider: &TableSeparator) -> bool {