Skip to content

Commit

Permalink
adding Fast Fortran load button
Browse files Browse the repository at this point in the history
  • Loading branch information
lsafina committed Sep 15, 2023
1 parent 94ea932 commit 6c7bba4
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions src/Moose-MenuBar/MooseLoadFASTFortranMenuCommand.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
Class {
#name : #MooseLoadFASTFortranMenuCommand,
#superclass : #MooseAbstractLoadFASTMenuCommand,
#category : #'Moose-MenuBar-Commands'
}

{ #category : #accessing }
MooseLoadFASTFortranMenuCommand class >> help [

^ 'Famix representation of Fortran AST'
]

{ #category : #accessing }
MooseLoadFASTFortranMenuCommand class >> label [

^ 'FAST Fortran'
]

{ #category : #'world menu' }
MooseLoadFASTFortranMenuCommand class >> menuCommandOn: aBuilder [

<worldMenu>
^ (self menuCommandOn: aBuilder forCommand: self)
withSeparatorAfter;
yourself
]

{ #category : #accessing }
MooseLoadFASTFortranMenuCommand class >> menuPriority [

^ super menuPriority + 4
]

{ #category : #accessing }
MooseLoadFASTFortranMenuCommand >> baselineName [

^ 'FASTFortran'
]

{ #category : #accessing }
MooseLoadFASTFortranMenuCommand >> repositoryURL [

^ 'github://moosetechnology/FAST-Fortran' , '/src'
]

{ #category : #accessing }
MooseLoadFASTFortranMenuCommand >> version [

^ 'v1.x.x'
]

0 comments on commit 6c7bba4

Please sign in to comment.