d4t_formulas/.pub-cache/hosted/pub.dev/source_maps-0.10.13
Álvaro González 1d339653d5 feat: add formula data classes with strict JSON parsing
- Add VariableSpec class with magnitude field validation
- Add Formula class supporting multiple input/output variables
- Support d4rt_code as string or object with code field
- Add comprehensive tests for parsing and serialization
- Fix broken test import in pruebas_d4rt_test.dart

Follows README.md format requirements exactly
2025-08-21 17:15:00 +02:00
..
lib feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
test feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
analysis_options.yaml feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
CHANGELOG.md feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
LICENSE feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
pubspec.yaml feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
README.md feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00

Build Status pub package package publisher

This project implements a Dart pub package to work with source maps.

Docs and usage

The implementation is based on the source map version 3 spec which was originated from the Closure Compiler and has been implemented in Chrome and Firefox.

In this package we provide:

  • Data types defining file locations and spans: these are not part of the original source map specification. These data types are great for tracking source locations on source maps, but they can also be used by tools to reporting useful error messages that include on source locations.
  • A builder that creates a source map programmatically and produces the encoded source map format.
  • A parser that reads the source map format and provides APIs to read the mapping information.