Skip to content

Commit fce2d02

Browse files
committed
обновлен ассемблер
1 parent d4b324c commit fce2d02

File tree

20 files changed

+4051
-3957
lines changed

20 files changed

+4051
-3957
lines changed

bcomp-assembler/pom.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>ru.ifmo.cs</groupId>
@@ -16,6 +16,8 @@
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<antlr4.visitor>true</antlr4.visitor>
1818
<antlr4.listener>true</antlr4.listener>
19+
<maven.compiler.source>1.8</maven.compiler.source>
20+
<maven.compiler.target>1.8</maven.compiler.target>
1921
</properties>
2022
<dependencies>
2123
<dependency>
@@ -27,18 +29,18 @@
2729
<dependency>
2830
<groupId>org.antlr</groupId>
2931
<artifactId>antlr4-runtime</artifactId>
30-
<version>4.7.2</version>
32+
<version>4.8</version>
3133
</dependency>
3234
</dependencies>
3335
<build>
3436
<plugins>
3537
<plugin>
3638
<groupId>org.antlr</groupId>
3739
<artifactId>antlr4-maven-plugin</artifactId>
38-
<version>4.7.2</version>
40+
<version>4.8</version>
3941
<configuration>
40-
<source>1.6</source>
41-
<target>1.6</target>
42+
<source>1.8</source>
43+
<target>1.8</target>
4244
</configuration>
4345
<executions>
4446
<execution>
@@ -51,4 +53,4 @@
5153
</plugin>
5254
</plugins>
5355
</build>
54-
</project>
56+
</project>

bcomp-assembler/src/main/antlr4/ru.ifmo.cs.bcomp.grammar/BCompNGBaseListener.java

Lines changed: 0 additions & 300 deletions
This file was deleted.

0 commit comments

Comments
 (0)