├── .gitignore ├── .metadata ├── InterpreterVisualizer ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── api │ │ │ └── interpretervisualizer │ │ │ │ ├── InterpreterVisualizerAPI.java │ │ │ │ └── controller │ │ │ │ └── WebController.java │ │ └── simpleinterpreter │ │ │ ├── AST.java │ │ │ ├── Environment.java │ │ │ ├── Expr.java │ │ │ ├── Interpreter.java │ │ │ ├── InterpreterAdapter.java │ │ │ ├── Parser.java │ │ │ ├── RuntimeError.java │ │ │ ├── Scanner.java │ │ │ ├── SimpleInterpreter.java │ │ │ ├── StatementGraph.java │ │ │ ├── Stmt.java │ │ │ ├── Token.java │ │ │ └── TokenType.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── api │ └── interpretervisualizer │ └── InterpreterVisualizerApplicationTests.java ├── LoxGrammar ├── Peek-parsing.gif ├── Peek-semantic.gif ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutterdesktopapp │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── tokens_file.txt ├── contribution.md ├── graphite_modify.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── components │ ├── resusable_circle.dart │ └── snackbar.dart ├── main.dart ├── models │ ├── Ast.dart │ ├── parsing_ast.dart │ ├── response.dart │ ├── statement.dart │ └── tokens.dart ├── screens │ ├── ast_graph.dart │ ├── first_page.dart │ ├── home_page.dart │ ├── material_main_page.dart │ ├── parsing_ast_page.dart │ ├── select_visualization_mode.dart │ ├── semantic_page.dart │ ├── syntactic_and_statement_page.dart │ └── tokens_page.dart ├── services │ └── networking.dart ├── ui_elements │ ├── card_box.dart │ ├── code_text.dart │ ├── colored_card_box.dart │ ├── console_panel.dart │ ├── control_buttons.dart │ ├── freescrollview.dart │ ├── modes_circles.dart │ ├── single_graph.dart │ ├── symbo_table_item.dart │ ├── symbol_table.dart │ ├── text_highlighter.dart │ └── token_item.dart └── utils │ ├── app_data.dart │ ├── constants.dart │ ├── graphs_provider.dart │ └── utilities_provider.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── peek-hello-lexical.gif ├── peek-hello-semantic.gif ├── peek-lexical-error.gif ├── peek-lexical.gif ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/.metadata -------------------------------------------------------------------------------- /InterpreterVisualizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/.gitignore -------------------------------------------------------------------------------- /InterpreterVisualizer/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /InterpreterVisualizer/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /InterpreterVisualizer/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /InterpreterVisualizer/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/mvnw -------------------------------------------------------------------------------- /InterpreterVisualizer/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/mvnw.cmd -------------------------------------------------------------------------------- /InterpreterVisualizer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/pom.xml -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/api/interpretervisualizer/InterpreterVisualizerAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/api/interpretervisualizer/InterpreterVisualizerAPI.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/api/interpretervisualizer/controller/WebController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/api/interpretervisualizer/controller/WebController.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/AST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/AST.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Environment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Environment.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Expr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Expr.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Interpreter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Interpreter.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/InterpreterAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/InterpreterAdapter.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Parser.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/RuntimeError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/RuntimeError.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Scanner.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/SimpleInterpreter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/SimpleInterpreter.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/StatementGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/StatementGraph.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Stmt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Stmt.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/Token.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/java/simpleinterpreter/TokenType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/java/simpleinterpreter/TokenType.java -------------------------------------------------------------------------------- /InterpreterVisualizer/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/main/resources/application.properties -------------------------------------------------------------------------------- /InterpreterVisualizer/src/test/java/api/interpretervisualizer/InterpreterVisualizerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/InterpreterVisualizer/src/test/java/api/interpretervisualizer/InterpreterVisualizerApplicationTests.java -------------------------------------------------------------------------------- /LoxGrammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/LoxGrammar -------------------------------------------------------------------------------- /Peek-parsing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/Peek-parsing.gif -------------------------------------------------------------------------------- /Peek-semantic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/Peek-semantic.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutterdesktopapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/java/com/example/flutterdesktopapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/tokens_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/assets/tokens_file.txt -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/contribution.md -------------------------------------------------------------------------------- /graphite_modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/graphite_modify.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/components/resusable_circle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/components/resusable_circle.dart -------------------------------------------------------------------------------- /lib/components/snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/components/snackbar.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/Ast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/models/Ast.dart -------------------------------------------------------------------------------- /lib/models/parsing_ast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/models/parsing_ast.dart -------------------------------------------------------------------------------- /lib/models/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/models/response.dart -------------------------------------------------------------------------------- /lib/models/statement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/models/statement.dart -------------------------------------------------------------------------------- /lib/models/tokens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/models/tokens.dart -------------------------------------------------------------------------------- /lib/screens/ast_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/ast_graph.dart -------------------------------------------------------------------------------- /lib/screens/first_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/first_page.dart -------------------------------------------------------------------------------- /lib/screens/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/home_page.dart -------------------------------------------------------------------------------- /lib/screens/material_main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/material_main_page.dart -------------------------------------------------------------------------------- /lib/screens/parsing_ast_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/parsing_ast_page.dart -------------------------------------------------------------------------------- /lib/screens/select_visualization_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/select_visualization_mode.dart -------------------------------------------------------------------------------- /lib/screens/semantic_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/semantic_page.dart -------------------------------------------------------------------------------- /lib/screens/syntactic_and_statement_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/syntactic_and_statement_page.dart -------------------------------------------------------------------------------- /lib/screens/tokens_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/screens/tokens_page.dart -------------------------------------------------------------------------------- /lib/services/networking.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/services/networking.dart -------------------------------------------------------------------------------- /lib/ui_elements/card_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/card_box.dart -------------------------------------------------------------------------------- /lib/ui_elements/code_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/code_text.dart -------------------------------------------------------------------------------- /lib/ui_elements/colored_card_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/colored_card_box.dart -------------------------------------------------------------------------------- /lib/ui_elements/console_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/console_panel.dart -------------------------------------------------------------------------------- /lib/ui_elements/control_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/control_buttons.dart -------------------------------------------------------------------------------- /lib/ui_elements/freescrollview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/freescrollview.dart -------------------------------------------------------------------------------- /lib/ui_elements/modes_circles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/modes_circles.dart -------------------------------------------------------------------------------- /lib/ui_elements/single_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/single_graph.dart -------------------------------------------------------------------------------- /lib/ui_elements/symbo_table_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/symbo_table_item.dart -------------------------------------------------------------------------------- /lib/ui_elements/symbol_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/symbol_table.dart -------------------------------------------------------------------------------- /lib/ui_elements/text_highlighter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/text_highlighter.dart -------------------------------------------------------------------------------- /lib/ui_elements/token_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/ui_elements/token_item.dart -------------------------------------------------------------------------------- /lib/utils/app_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/utils/app_data.dart -------------------------------------------------------------------------------- /lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/utils/constants.dart -------------------------------------------------------------------------------- /lib/utils/graphs_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/utils/graphs_provider.dart -------------------------------------------------------------------------------- /lib/utils/utilities_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/lib/utils/utilities_provider.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /peek-hello-lexical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/peek-hello-lexical.gif -------------------------------------------------------------------------------- /peek-hello-semantic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/peek-hello-semantic.gif -------------------------------------------------------------------------------- /peek-lexical-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/peek-lexical-error.gif -------------------------------------------------------------------------------- /peek-lexical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/peek-lexical.gif -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OsamaMaani/Interpreter-Visualizer/HEAD/test/widget_test.dart --------------------------------------------------------------------------------