Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Entrega del Compilador #42

Open
wants to merge 200 commits into
base: master
Choose a base branch
from

Commits on Mar 4, 2021

  1. Update team.yml

    Team information filled
    luisoibarra committed Mar 4, 2021
    Configuration menu
    Copy the full SHA
    d7a3f1e View commit details
    Browse the repository at this point in the history
  2. Initial Infrastructure Proposal

    Basic packages with specific tasks created.
    - lexer: Contains the logic of the lexical analysis
    - parser: Contains the logic of the parsing process
    - semantic: Contains the logic of the semantic analysis
    - cil: Contains the logic for processing CIL middle code
    - mips: Contains the logic for processing MIPS code
    
    Use example for Pipes in main.py using Mocks
    luisoibarra committed Mar 4, 2021
    Configuration menu
    Copy the full SHA
    1a3b139 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2021

  1. Initial lexer commit

    NazDia committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    c0084ee View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2021

  1. Infrastructure Updated

    Added error saving infrastructure
    Enhanced interface organization. ICoolService, ICoolToken
    Enforced coding styles:
    - Class names is Camellcase
    - All params and method should annotate its expected type
    - Add documentation to packages, classes, methods when needed
    luisoibarra committed Mar 10, 2021
    Configuration menu
    Copy the full SHA
    787f2a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2021

  1. Available Lexer Testing

    To test Lexer execute:
    $ make test TAG=lexer
    Luiso committed Mar 14, 2021
    Configuration menu
    Copy the full SHA
    f6f54fa View commit details
    Browse the repository at this point in the history
  2. Basic Semantic Infrastructure

    Luiso committed Mar 14, 2021
    Configuration menu
    Copy the full SHA
    1f73e34 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4fd4530 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

  1. TypeCollector added

    TODO:
    - Complete semantic tests
    Luiso committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    5d32cb2 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2021

  1. Project running with cool2 package

    Luiso committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    2e1dafc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52f9e84 View commit details
    Browse the repository at this point in the history
  3. Lexing process integrated

    Luiso committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    02cf92c View commit details
    Browse the repository at this point in the history
  4. TODO FIX LEXING ERROR

    Run tests with make test TAG=lexer
    Luiso committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    2e25875 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2021

  1. Checkpoint: Move cmp to cool_cmp

    Luiso committed Apr 18, 2021
    Configuration menu
    Copy the full SHA
    ad01600 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2021

  1. Cool2 Main Project

    cool_cmp will be deprecated
    
    Parser fixed:
    Missing semicolon at the end of a class definition
    
    Errors updates:
    All string errors were replaced with class errors
    
    TODO:
    Fix cool2 test to match new languages specs
    Pass github tests
    Luiso committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    f96a5d0 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2021

  1. Nothing Changed

    Luiso committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    b1aa897 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2021

  1. Semantics fixes

    TODO:
    dispatch3.cl and below
    Luiso committed Apr 24, 2021
    Configuration menu
    Copy the full SHA
    37d6f81 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2021

  1. Semantics fixs added

    TODO:
    Fix cyclic attribute/method fetch
    Luiso committed May 1, 2021
    Configuration menu
    Copy the full SHA
    5c109f1 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2021

  1. Semantic Tests Completed

    Luiso committed Jul 13, 2021
    Configuration menu
    Copy the full SHA
    0e53cfd View commit details
    Browse the repository at this point in the history
  2. Tests fixed according new grammar

    Luiso committed Jul 13, 2021
    Configuration menu
    Copy the full SHA
    3e663f2 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2021

  1. Merge pull request #1 from WataLuisoDalmauCompiler/semantic_fix

    Semantic Fixes Version 1
    luisoibarra authored Jul 18, 2021
    Configuration menu
    Copy the full SHA
    1ab7a5e View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2021

  1. ply lexer improved

    NazDia committed Jul 21, 2021
    Configuration menu
    Copy the full SHA
    93c5d05 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2021

  1. Configuration menu
    Copy the full SHA
    ec3dc71 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2021

  1. Fixed multilines comments

    NazDia committed Jul 27, 2021
    Configuration menu
    Copy the full SHA
    dbc3e26 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2021

  1. Configuration menu
    Copy the full SHA
    c430ee5 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2021

  1. Ply running

    Cyclic dependency fixed between
    cool_cmp.lexer.lexer2 and cool2.lib.lexer.lexer
    
    Path updated to provide support for cool_cmp
    Luiso committed Aug 1, 2021
    Configuration menu
    Copy the full SHA
    d295140 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd25302 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2021

  1. Lexer process changed

    Comment grammar, lexer and parser are deprecated.
    Multiline comments are handled in a pipe base manner (remove_comment_tokens_pipe)
    Luiso committed Aug 3, 2021
    Configuration menu
    Copy the full SHA
    271079f View commit details
    Browse the repository at this point in the history
  2. Semantic errors fixed

    Some of the remaining lexer caused errors fixed
    
    Tests configured
    Luiso committed Aug 3, 2021
    Configuration menu
    Copy the full SHA
    2b08ed8 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'lexer_change_luiso' into lexing-parsing

    Added temporary lexer to test semantics
    Luiso committed Aug 3, 2021
    Configuration menu
    Copy the full SHA
    8fd2752 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2021

  1. The text was been parsed twice.

    Used dictionary computed parse to avoid issue
    Luiso committed Aug 8, 2021
    Configuration menu
    Copy the full SHA
    0d2cb37 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'dev' into lexing-parsing

    Luiso committed Aug 8, 2021
    Configuration menu
    Copy the full SHA
    29949f7 View commit details
    Browse the repository at this point in the history
  3. Ply token types map

    NazDia committed Aug 8, 2021
    Configuration menu
    Copy the full SHA
    8e7efde View commit details
    Browse the repository at this point in the history
  4. Added EOF in lexer

    NazDia committed Aug 8, 2021
    Configuration menu
    Copy the full SHA
    7aecac2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    65be050 View commit details
    Browse the repository at this point in the history
  6. Fixed double parsing

    NazDia committed Aug 8, 2021
    Configuration menu
    Copy the full SHA
    ed1c546 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'dev' into Sintax-Tests

    Luiso committed Aug 8, 2021
    Configuration menu
    Copy the full SHA
    2fe7201 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2021

  1. Configuration menu
    Copy the full SHA
    a2f2ac6 View commit details
    Browse the repository at this point in the history
  2. testing changed

    lukedalmau committed Aug 9, 2021
    Configuration menu
    Copy the full SHA
    31504ff View commit details
    Browse the repository at this point in the history
  3. .. for ../tests

    lukedalmau committed Aug 9, 2021
    Configuration menu
    Copy the full SHA
    e30a37d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e2a085 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2021

  1. PlyLexer added to cool2 package

    Luiso committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    9097865 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d40628a View commit details
    Browse the repository at this point in the history
  3. Folder structure changed

    Luiso committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    0f8b5f2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b68021a View commit details
    Browse the repository at this point in the history
  5. minor changes

    lukedalmau committed Sep 17, 2021
    Configuration menu
    Copy the full SHA
    6ae75d3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3fa7d2c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5616fed View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2021

  1. Grammar fixed

    Only one test to go. Check dispatch9.cl
    Luiso committed Sep 20, 2021
    Configuration menu
    Copy the full SHA
    c622515 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2021

  1. FInal grammar fixes

    Variable declaration only available in let
    Luiso committed Sep 21, 2021
    Configuration menu
    Copy the full SHA
    95e6e55 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5 from WataLuisoDalmauCompiler/dev

    All test passed, except codegen
    luisoibarra authored Sep 21, 2021
    Configuration menu
    Copy the full SHA
    57aa9c1 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2021

  1. Generating CIL code

    First steps in CIL generation process.
    Luiso committed Sep 27, 2021
    Configuration menu
    Copy the full SHA
    d89b833 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2021

  1. Test Problems Fixed.

    When a new instance is created all the attributes initializers are called
    Luiso committed Sep 28, 2021
    Configuration menu
    Copy the full SHA
    983f4c5 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2021

  1. Nodes added.

    Check TODOs in cil_visitor.py
    Luiso committed Oct 5, 2021
    Configuration menu
    Copy the full SHA
    e7e7f02 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2021

  1. Let In CIL

    - @ calls
    - Bug naming initialization functions missing $ in generated CIL.
    Luiso committed Oct 9, 2021
    Configuration menu
    Copy the full SHA
    9cccd07 View commit details
    Browse the repository at this point in the history
  2. CIL Interpreter

    Main program args updated
    Luiso committed Oct 9, 2021
    Configuration menu
    Copy the full SHA
    3dd79f3 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2021

  1. Inicio del reporte

    Se inicializan los tipos mediante un llamado a una función generada en CIL
    Luiso committed Oct 18, 2021
    Configuration menu
    Copy the full SHA
    8103705 View commit details
    Browse the repository at this point in the history
  2. SELF_TYPE working CIL

    Luiso committed Oct 18, 2021
    Configuration menu
    Copy the full SHA
    c826cb0 View commit details
    Browse the repository at this point in the history
  3. SELF_TYPE and CaseNodes handled

    Luiso committed Oct 18, 2021
    Configuration menu
    Copy the full SHA
    0e20390 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2021

  1. GitHub testing fixes

    Luiso committed Oct 30, 2021
    Configuration menu
    Copy the full SHA
    710e372 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2021

  1. Fixing requirements

    Luiso committed Oct 31, 2021
    Configuration menu
    Copy the full SHA
    2d6e986 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #6 from WataLuisoDalmauCompiler/cil

    CIL infrastructure added
    luisoibarra authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    da40e29 View commit details
    Browse the repository at this point in the history
  3. MIPS Update

    - MIPS Infrastructure added
    - MIPS Documentation added
    - MIPS Example code added
    
    TODO:
    - Complete CIL to MIPS visitor
    Luiso committed Oct 31, 2021
    Configuration menu
    Copy the full SHA
    eb10cce View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2021

  1. Create std.cool

    luisoibarra committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    b95b6f4 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2021

  1. Configuration menu
    Copy the full SHA
    6eb4549 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2021

  1. Merge pull request #8 from WataLuisoDalmauCompiler/generation_t_def

    Started 'type definition' in MIPS
    luisoibarra authored Nov 9, 2021
    Configuration menu
    Copy the full SHA
    9a838d2 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2021

  1. Generation Nodes Added

    Luiso committed Nov 23, 2021
    Configuration menu
    Copy the full SHA
    3d237e1 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2022

  1. CIL->MIPS Nodes added

    - Meta nodes
    - Array, Get, Set
    - Father
    - Copy
    Luiso committed Feb 14, 2022
    Configuration menu
    Copy the full SHA
    57c665d View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2022

  1. IO Operations added. Not working yet

    Luiso committed Feb 15, 2022
    Configuration menu
    Copy the full SHA
    26edfee View commit details
    Browse the repository at this point in the history
  2. Ready for sprint

    Luiso committed Feb 15, 2022
    Configuration menu
    Copy the full SHA
    45e816e View commit details
    Browse the repository at this point in the history
  3. Simple printing works

    Luiso committed Feb 15, 2022
    Configuration menu
    Copy the full SHA
    f9f1f6a View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2022

  1. Configuration menu
    Copy the full SHA
    254285d View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2022

  1. little change

    NazDia committed Feb 17, 2022
    Configuration menu
    Copy the full SHA
    98386f0 View commit details
    Browse the repository at this point in the history
  2. Manual de Cil inicializado

    fila, columna y comentario agregado a los argumentos
    lukedalmau committed Feb 17, 2022
    Configuration menu
    Copy the full SHA
    1a285de View commit details
    Browse the repository at this point in the history
  3. Get/Set Attributes

    luisoibarra committed Feb 17, 2022
    Configuration menu
    Copy the full SHA
    6af37a4 View commit details
    Browse the repository at this point in the history
  4. Printing class arguments

    luisoibarra committed Feb 17, 2022
    Configuration menu
    Copy the full SHA
    64bab29 View commit details
    Browse the repository at this point in the history
  5. comment argument = None

    lukedalmau committed Feb 17, 2022
    Configuration menu
    Copy the full SHA
    67e780a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d898d28 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    651b262 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2022

  1. Function Call working

    luisoibarra committed Feb 18, 2022
    Configuration menu
    Copy the full SHA
    8a95dd8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0702d9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    00b045c View commit details
    Browse the repository at this point in the history
  4. arith.cl pasa de cool a cil

    NazDia committed Feb 18, 2022
    Configuration menu
    Copy the full SHA
    dfd3422 View commit details
    Browse the repository at this point in the history
  5. Read String Working

    - Some errors fixed in the order definition of attributes and
    variables when building the scopes
    luisoibarra committed Feb 18, 2022
    Configuration menu
    Copy the full SHA
    16ce64e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    52c329c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fd1bf85 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8a27b40 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #9 from WataLuisoDalmauCompiler/w_gen

    CIL Interpreter Testing
    luisoibarra authored Feb 18, 2022
    Configuration menu
    Copy the full SHA
    2001d15 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #10 from WataLuisoDalmauCompiler/generation

    Initial Generation Infrastructure
    luisoibarra authored Feb 18, 2022
    Configuration menu
    Copy the full SHA
    462ea08 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    cc14fd2 View commit details
    Browse the repository at this point in the history
  12. Void checking works

    luisoibarra committed Feb 18, 2022
    Configuration menu
    Copy the full SHA
    60ec1a6 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #11 from WataLuisoDalmauCompiler/w_dev

    CIL Interpreter Bug fixed
    luisoibarra authored Feb 18, 2022
    Configuration menu
    Copy the full SHA
    bffb961 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a83e111 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    274f6da View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2022

  1. Fixing Array Issues

    - Get, Set, and Create array instructions enhanced
    - Father initialized when object instance is created
    - TODO:
      - Possible error in type_distance function.
      - Fix the CIL to MIPS issues
    luisoibarra committed Feb 19, 2022
    Configuration menu
    Copy the full SHA
    9bbb8cc View commit details
    Browse the repository at this point in the history
  2. Simple Generation Testing

    luisoibarra committed Feb 19, 2022
    Configuration menu
    Copy the full SHA
    ef4c5ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    624bdcf View commit details
    Browse the repository at this point in the history
  4. Merge pull request #7 from WataLuisoDalmauCompiler/fix_tests

    Fixing requirements
    luisoibarra authored Feb 19, 2022
    Configuration menu
    Copy the full SHA
    518cbda View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2022

  1. InitInstanceFather fixes

    luisoibarra committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    c5583ca View commit details
    Browse the repository at this point in the history
  2. CIL MANUAL UPDATED

    lukedalmau committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    a90a4aa View commit details
    Browse the repository at this point in the history
  3. attrs

    NazDia committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    592601b View commit details
    Browse the repository at this point in the history
  4. Case Scope Bug Fixed

    luisoibarra committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    2a12664 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d079613 View commit details
    Browse the repository at this point in the history
  6. string cleaner in cilrunner

    NazDia committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    78524de View commit details
    Browse the repository at this point in the history
  7. Copy and Length Working

    luisoibarra committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    ee5a3ab View commit details
    Browse the repository at this point in the history
  8. Manual actualizado

    keywords ordenadas de forma alfabetica
    lukedalmau committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    04dab8c View commit details
    Browse the repository at this point in the history
  9. Substring Working

    luisoibarra committed Feb 20, 2022
    Configuration menu
    Copy the full SHA
    c107dc2 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    40d383f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    798f078 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2022

  1. TypeNameNode added to CIL

    luisoibarra committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    4069304 View commit details
    Browse the repository at this point in the history
  2. Manual de CIL review

    luisoibarra committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    912dc9a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    22f93a6 View commit details
    Browse the repository at this point in the history
  4. TypeName Working

    luisoibarra committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    16dc591 View commit details
    Browse the repository at this point in the history
  5. Concat Working

    luisoibarra committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    bfe0bea View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    299df85 View commit details
    Browse the repository at this point in the history
  7. Update TODO.md

    luisoibarra committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    56f60d9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    51baf65 View commit details
    Browse the repository at this point in the history
  9. Length Fixed

    luisoibarra committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    1a3c1c7 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ad76469 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6592dfc View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

  1. div interpreter

    NazDia committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    19e62a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    683daae View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6db866d View commit details
    Browse the repository at this point in the history
  4. Case Of Error

    luisoibarra committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    12774e5 View commit details
    Browse the repository at this point in the history
  5. No genera metodos dobles

    NazDia committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    1e1b242 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8be531c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4c5b4ba View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f998a4a View commit details
    Browse the repository at this point in the history
  9. Tests Working

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    f143118 View commit details
    Browse the repository at this point in the history
  10. Dummy Commit

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    38fc452 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6e858f7 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    309b60f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e6b1b8f View commit details
    Browse the repository at this point in the history
  14. Merge branch 'testing_fix' into dev

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    66921f9 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    4eae67c View commit details
    Browse the repository at this point in the history
  16. Merge pull request #14 from WataLuisoDalmauCompiler/dalmau

    Generate meta-data
    luisoibarra authored Feb 22, 2022
    Configuration menu
    Copy the full SHA
    0f61fe3 View commit details
    Browse the repository at this point in the history
  17. Fixing missing arguments

    luisoibarra committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    2ca7c5c View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    47dd839 View commit details
    Browse the repository at this point in the history
  19. row, column and comment from CIL Nodes

    linked to MIPS Nodes
    lukedalmau committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    bee02a4 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    473f8f9 View commit details
    Browse the repository at this point in the history
  21. minor errors fixed

    ran testing.cl without errors
    lukedalmau committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    e37ecab View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    56405a3 View commit details
    Browse the repository at this point in the history
  23. Merge branch 'dev' into string_mips_change

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    a0e48ae View commit details
    Browse the repository at this point in the history
  24. visual changes

    lukedalmau committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    5902e7c View commit details
    Browse the repository at this point in the history
  25. print-cool fixed CIL interpreter

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    c4924af View commit details
    Browse the repository at this point in the history
  26. String Manipulation Fixed

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    f9114f5 View commit details
    Browse the repository at this point in the history
  27. Merge branch 'string_mips_change' into dev

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    f04fabc View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    626cf50 View commit details
    Browse the repository at this point in the history
  29. post_merge

    NazDia committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    616a1dc View commit details
    Browse the repository at this point in the history
  30. Merge branch 'w_dev' into dev

    Luiso committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    9e5e402 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. CIL Type Generation with no errors

    - Object initialization enhanced
    - Result variable added in case translation
    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    8ef8864 View commit details
    Browse the repository at this point in the history
  2. Abort msg modified

    NazDia committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    143ab29 View commit details
    Browse the repository at this point in the history
  3. Reference Type Equal added

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    b7cc0dd View commit details
    Browse the repository at this point in the history
  4. case testing

    lukedalmau committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    1857356 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d64bcd1 View commit details
    Browse the repository at this point in the history
  6. Equal Change, Value Types static calls

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    56b2efd View commit details
    Browse the repository at this point in the history
  7. Testing Situation

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    ffa1948 View commit details
    Browse the repository at this point in the history
  8. Small fix

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    1f27ea4 View commit details
    Browse the repository at this point in the history
  9. XorNode added

    fixed Not behavior
    changing nor by seq
    lukedalmau committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    0b9961c View commit details
    Browse the repository at this point in the history
  10. Fixing Div

    luisoibarra committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    334e44e View commit details
    Browse the repository at this point in the history
  11. Void Fix Break Case

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    7aa6c7e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f63bbb7 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    1d49bb6 View commit details
    Browse the repository at this point in the history
  14. Adding \n to the end of abort message

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    5ff7076 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    3d8035b View commit details
    Browse the repository at this point in the history
  16. Merge branch 'case-testing' into dev

    Luiso committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    87b3493 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    adf8786 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2022

  1. Configuration menu
    Copy the full SHA
    543544d View commit details
    Browse the repository at this point in the history
  2. If input is empty don't remove nothing

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    4f63990 View commit details
    Browse the repository at this point in the history
  3. Hairyscary remaining test

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    43035dc View commit details
    Browse the repository at this point in the history
  4. Hairy Working

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    9aeaf04 View commit details
    Browse the repository at this point in the history
  5. book testing passed

    lukedalmau committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    f576b66 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    dd745d2 View commit details
    Browse the repository at this point in the history
  7. CRLF to LF

    All testing passed.
    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    6d7cade View commit details
    Browse the repository at this point in the history
  8. Project structure updated

    - TODO Problems with cool_cmp tests
    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    4f1aef3 View commit details
    Browse the repository at this point in the history
  9. Forcing tab to space convertion

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    01d9658 View commit details
    Browse the repository at this point in the history
  10. Original attributes4 file

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    1b93f21 View commit details
    Browse the repository at this point in the history
  11. Merge branch 'dev' into change_structure

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    e22d95b View commit details
    Browse the repository at this point in the history
  12. Old tests remove

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    3b052db View commit details
    Browse the repository at this point in the history
  13. Missing lib added

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    69a821e View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    be155dc View commit details
    Browse the repository at this point in the history
  15. new_reqs

    NazDia committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    c87160f View commit details
    Browse the repository at this point in the history
  16. Merge branch 'w_dev' into dev

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    e52320f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    2e1b1a1 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    0e2b1aa View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    fef3081 View commit details
    Browse the repository at this point in the history
  20. 3 tabs

    lukedalmau committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    11d0d63 View commit details
    Browse the repository at this point in the history
  21. PYTHON 3.10 Semanic fix

    Working in PYTHON 3.7
    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    4200569 View commit details
    Browse the repository at this point in the history
  22. Report V0.1

    Luiso committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    287fdc3 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    6942093 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2022

  1. initial_gen fixes

    lukedalmau committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    cfac9c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e27f46 View commit details
    Browse the repository at this point in the history
  3. better mips formatting when printing

    test_mips.sh created and added to report.md
    fisrt cleaning of garbage
    lukedalmau committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    ca7a9ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6fec7af View commit details
    Browse the repository at this point in the history
  5. Report v0.2

    luisoibarra committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    c0fb19b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    30338fa View commit details
    Browse the repository at this point in the history
  7. Update report.md

    luisoibarra committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    900594b View commit details
    Browse the repository at this point in the history
  8. report.md minor changes

    lukedalmau committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    a60647f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2a3eb2f View commit details
    Browse the repository at this point in the history
  10. Report to PDF

    luisoibarra committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    83466e6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6f6a50a View commit details
    Browse the repository at this point in the history