findDataSet method
Implementation
ExprDataSet? findDataSet(String name) {
final r = datasetResolver;
if (r != null) return r(name);
// Falls back to the built-in Map when there's no external resolver (backward compatibility; not normally used)
return _legacyDatasets[name.toUpperCase()];
}