mirror of
https://github.com/google/blockly.git
synced 2026-05-03 10:30:13 +02:00
5a6f22f0f3
Previously generators could generate code from inputs that didn't exist and get back the empty string. This silent failure was causing problems for diagnosing issues. This PR changes the behaviour so that an error is thrown. This will break generators which rely on the previous behaviour. Several of our demo blocks needed editing to accomodate this change. Resolves #7665