Index: src/Parser/DeclarationNode.cpp
===================================================================
--- src/Parser/DeclarationNode.cpp	(revision 45ee1728c7f098a172d35db8ad17ebe5bdb9cfbf)
+++ src/Parser/DeclarationNode.cpp	(revision 3f37f5beff02d9cfa7d88ada6e6363a230d63ae4)
@@ -959,5 +959,6 @@
 			isDelete ? nullptr : maybeBuild( initializer ),
 			copy( attributes )
-		)->set_extension( extension );
+		);
+		decl->extension = extension;
 		if ( isDelete ) {
 			auto dwt = strict_dynamic_cast<ast::DeclWithType *>( decl );
Index: src/Parser/ExpressionNode.hpp
===================================================================
--- src/Parser/ExpressionNode.hpp	(revision 45ee1728c7f098a172d35db8ad17ebe5bdb9cfbf)
+++ src/Parser/ExpressionNode.hpp	(revision 3f37f5beff02d9cfa7d88ada6e6363a230d63ae4)
@@ -43,5 +43,5 @@
 	ast::Expr * build() {
 		ast::Expr * node = expr.release();
-		node->set_extension( this->get_extension() );
+		node->extension = this->extension;
 		node->location = this->location;
 		return node;
