i3config_v1 library
i3config v1 - Original hand-written parser implementation
This is the original, stable implementation of the i3config parser using hand-written parsing logic. Use this for production code until v2 is fully tested and stabilized.
Usage
import 'package:i3config/i3config_v1.dart';
final parser = I3ConfigParser(configContent);
final config = parser.parse();
Features
- Stable, battle-tested parsing logic
- Simple error handling
- Basic AST structure
- Compatible with existing code
Classes
Functions
-
parseValue(
String rawValue) → dynamic