export class ArrayAccess {
	
	constructor (id, line, column) {
		this.id = id;
		this.line = line;
		this.column = column;
	}
}