|
| 1 | +use crate::{ |
| 2 | + nodes::{Block, DecimalNumber, NumberExpression}, |
| 3 | + process::{DefaultVisitor, NodeProcessor, NodeVisitor}, |
| 4 | + rules::{Context, FlawlessRule, RuleConfiguration, RuleConfigurationError, RuleProperties}, |
| 5 | +}; |
| 6 | + |
| 7 | +use super::verify_no_rule_properties; |
| 8 | + |
| 9 | +#[derive(Default)] |
| 10 | +struct Processor<'a> { |
| 11 | + code: &'a str, |
| 12 | +} |
| 13 | + |
| 14 | +impl NodeProcessor for Processor<'_> { |
| 15 | + fn process_number_expression(&mut self, num_exp: &mut NumberExpression) { |
| 16 | + if let NumberExpression::Binary(binary) = num_exp { |
| 17 | + let value = binary.compute_value(); |
| 18 | + *num_exp = DecimalNumber::new(value).into(); |
| 19 | + return; |
| 20 | + } |
| 21 | + if let Some(token) = num_exp.get_token() { |
| 22 | + let content = token.read(self.code); |
| 23 | + let mut underscore_removed = String::with_capacity(content.len()); |
| 24 | + let mut changed = false; |
| 25 | + |
| 26 | + for c in content.chars() { |
| 27 | + if c != '_' { |
| 28 | + underscore_removed.push(c); |
| 29 | + } else { |
| 30 | + changed = true; |
| 31 | + } |
| 32 | + } |
| 33 | + |
| 34 | + if changed { |
| 35 | + let mut new_token = token.clone(); |
| 36 | + new_token.replace_with_content(underscore_removed); |
| 37 | + num_exp.set_token(new_token); |
| 38 | + } |
| 39 | + } |
| 40 | + } |
| 41 | +} |
| 42 | + |
| 43 | +impl<'a> Processor<'a> { |
| 44 | + fn new(code: &'a str) -> Self { |
| 45 | + Self { code } |
| 46 | + } |
| 47 | +} |
| 48 | + |
| 49 | +pub const CONVERT_LUAU_NUMBERS_RULE_NAME: &str = "convert_luau_numbers"; |
| 50 | + |
| 51 | +/// A rule that converts Luau number literals to decimal numbers. |
| 52 | +#[derive(Default, Debug, PartialEq, Eq)] |
| 53 | +pub struct ConvertLuauNumbers {} |
| 54 | + |
| 55 | +impl FlawlessRule for ConvertLuauNumbers { |
| 56 | + fn flawless_process(&self, block: &mut Block, context: &Context) { |
| 57 | + let mut processor = Processor::new(context.original_code()); |
| 58 | + DefaultVisitor::visit_block(block, &mut processor); |
| 59 | + } |
| 60 | +} |
| 61 | + |
| 62 | +impl RuleConfiguration for ConvertLuauNumbers { |
| 63 | + fn configure(&mut self, properties: RuleProperties) -> Result<(), RuleConfigurationError> { |
| 64 | + verify_no_rule_properties(&properties)?; |
| 65 | + |
| 66 | + Ok(()) |
| 67 | + } |
| 68 | + |
| 69 | + fn get_name(&self) -> &'static str { |
| 70 | + CONVERT_LUAU_NUMBERS_RULE_NAME |
| 71 | + } |
| 72 | + |
| 73 | + fn serialize_to_properties(&self) -> RuleProperties { |
| 74 | + RuleProperties::new() |
| 75 | + } |
| 76 | +} |
| 77 | + |
| 78 | +#[cfg(test)] |
| 79 | +mod test { |
| 80 | + use super::*; |
| 81 | + use crate::rules::Rule; |
| 82 | + |
| 83 | + use insta::assert_json_snapshot; |
| 84 | + |
| 85 | + fn new_rule() -> ConvertLuauNumbers { |
| 86 | + ConvertLuauNumbers::default() |
| 87 | + } |
| 88 | + |
| 89 | + #[test] |
| 90 | + fn serialize_default_rule() { |
| 91 | + let rule: Box<dyn Rule> = Box::new(new_rule()); |
| 92 | + |
| 93 | + assert_json_snapshot!("default_convert_luau_numbers", rule); |
| 94 | + } |
| 95 | + |
| 96 | + #[test] |
| 97 | + fn configure_with_extra_field_error() { |
| 98 | + let result = json5::from_str::<Box<dyn Rule>>( |
| 99 | + r#"{ |
| 100 | + rule: 'convert_luau_numbers', |
| 101 | + prop: "something", |
| 102 | + }"#, |
| 103 | + ); |
| 104 | + pretty_assertions::assert_eq!(result.unwrap_err().to_string(), "unexpected field 'prop'"); |
| 105 | + } |
| 106 | +} |
0 commit comments