Implement enum for Layout data type

This commit is contained in:
Keavon Chambers
2020-07-13 15:01:24 -07:00
parent ec8f9eda54
commit 00cd62d411
3 changed files with 5 additions and 4 deletions

View File

@@ -224,7 +224,7 @@ impl AttributeParser {
// Return the case-insensitive TypeName enum for the individual type
match &individual_type.to_ascii_lowercase()[..] {
// "layout" => TypeName::Layout, // TODO
"layout" => TypeName::Layout,
"integer" => TypeName::Integer,
"decimal" => TypeName::Decimal,
"absolutepx" => TypeName::AbsolutePx,