Add an explicit intermediate YANG representation
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / ir / IRStatement044.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.rfc7950.ir;
9
10 class IRStatement044 extends IRStatement {
11     private final int startLine;
12     private final int startColumn;
13
14     IRStatement044(final IRKeyword keyword, final IRArgument argument, final int startLine, final int startColumn) {
15         super(keyword, argument);
16         this.startLine = startLine;
17         this.startColumn = startColumn;
18     }
19
20     @Override
21     public final int startLine() {
22         return startLine;
23     }
24
25     @Override
26     public final int startColumn() {
27         return startColumn;
28     }
29 }