Index: src/AST/Attribute.hpp
===================================================================
--- src/AST/Attribute.hpp	(revision 722c4831f024bae10fd8c1d0302463c5927292a4)
+++ src/AST/Attribute.hpp	(revision 489bacffe28f9f8d2482939a6fe7c0be7d41ff5d)
@@ -30,8 +30,8 @@
 public:
 	std::string name;
-	std::vector<ptr<Expr>> parameters;
+	std::vector<ptr<Expr>> params;
 
 	Attribute( const std::string & name = "", std::vector<ptr<Expr>> && params = {})
-	: name( name ), parameters( params ) {}
+	: name( name ), params( params ) {}
 	virtual ~Attribute() = default;
 
Index: src/AST/Convert.cpp
===================================================================
--- src/AST/Convert.cpp	(revision 722c4831f024bae10fd8c1d0302463c5927292a4)
+++ src/AST/Convert.cpp	(revision 489bacffe28f9f8d2482939a6fe7c0be7d41ff5d)
@@ -1328,5 +1328,5 @@
 		auto attr = new Attribute(
 			node->name,
-			get<Expression>().acceptL(node->parameters)
+			get<Expression>().acceptL(node->params)
 		);
 		this->node = attr;
Index: src/AST/Pass.impl.hpp
===================================================================
--- src/AST/Pass.impl.hpp	(revision 722c4831f024bae10fd8c1d0302463c5927292a4)
+++ src/AST/Pass.impl.hpp	(revision 489bacffe28f9f8d2482939a6fe7c0be7d41ff5d)
@@ -1879,5 +1879,5 @@
 
 	VISIT(
-		maybe_accept( node, &Attribute::parameters );
+		maybe_accept( node, &Attribute::params );
 	)
 
Index: src/AST/Print.cpp
===================================================================
--- src/AST/Print.cpp	(revision 722c4831f024bae10fd8c1d0302463c5927292a4)
+++ src/AST/Print.cpp	(revision 489bacffe28f9f8d2482939a6fe7c0be7d41ff5d)
@@ -491,4 +491,11 @@
 
 	virtual const ast::Attribute *        visit( const ast::Attribute            * node ) {
+		if ( node->empty() ) return node;
+		os << "Attribute with name: " << node->name;
+		if ( node->params.empty() ) return node;
+		os << " with parameters: " << std::endl;
+		++indent;
+		printAll( node->params );
+		--indent;
 		return node;
 	}
Index: src/AST/porting.md
===================================================================
--- src/AST/porting.md	(revision 722c4831f024bae10fd8c1d0302463c5927292a4)
+++ src/AST/porting.md	(revision 489bacffe28f9f8d2482939a6fe7c0be7d41ff5d)
@@ -110,4 +110,7 @@
 
 ## Specific Nodes ##
+`Attribute`
+* `parameters` => `params`
+
 `Decl`
 * `storageClasses` => `storage`
