Removing the defs inside of blocks for now (#2798)

This commit is contained in:
Jonathan Turner 2020-12-19 07:53:00 +13:00 committed by GitHub
parent 0b5ab1ef22
commit 57a2d695e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2245,10 +2245,10 @@ pub fn classify_block(
} }
} }
for def in scope.get_definitions() { // for def in scope.get_definitions() {
let name = def.params.name.clone(); // let name = def.params.name.clone();
output.definitions.insert(name, def.clone()); // output.definitions.insert(name, def.clone());
} // }
(output, error) (output, error)
} }