[d24f17c] | 1 | /**
|
---|
| 2 | * @param {string} value
|
---|
| 3 | * @returns {RegExp}
|
---|
| 4 | * */
|
---|
| 5 |
|
---|
| 6 | /**
|
---|
| 7 | * @param {RegExp | string } re
|
---|
| 8 | * @returns {string}
|
---|
| 9 | */
|
---|
| 10 | function source(re) {
|
---|
| 11 | if (!re) return null;
|
---|
| 12 | if (typeof re === "string") return re;
|
---|
| 13 |
|
---|
| 14 | return re.source;
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | /**
|
---|
| 18 | * @param {...(RegExp | string) } args
|
---|
| 19 | * @returns {string}
|
---|
| 20 | */
|
---|
| 21 | function concat(...args) {
|
---|
| 22 | const joined = args.map((x) => source(x)).join("");
|
---|
| 23 | return joined;
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | /*
|
---|
| 27 | Language: Fortran
|
---|
| 28 | Author: Anthony Scemama <scemama@irsamc.ups-tlse.fr>
|
---|
| 29 | Website: https://en.wikipedia.org/wiki/Fortran
|
---|
| 30 | Category: scientific
|
---|
| 31 | */
|
---|
| 32 |
|
---|
| 33 | /** @type LanguageFn */
|
---|
| 34 | function fortran(hljs) {
|
---|
| 35 | const PARAMS = {
|
---|
| 36 | className: 'params',
|
---|
| 37 | begin: '\\(',
|
---|
| 38 | end: '\\)'
|
---|
| 39 | };
|
---|
| 40 |
|
---|
| 41 | const COMMENT = {
|
---|
| 42 | variants: [
|
---|
| 43 | hljs.COMMENT('!', '$', {
|
---|
| 44 | relevance: 0
|
---|
| 45 | }),
|
---|
| 46 | // allow FORTRAN 77 style comments
|
---|
| 47 | hljs.COMMENT('^C[ ]', '$', {
|
---|
| 48 | relevance: 0
|
---|
| 49 | }),
|
---|
| 50 | hljs.COMMENT('^C$', '$', {
|
---|
| 51 | relevance: 0
|
---|
| 52 | })
|
---|
| 53 | ]
|
---|
| 54 | };
|
---|
| 55 |
|
---|
| 56 | // regex in both fortran and irpf90 should match
|
---|
| 57 | const OPTIONAL_NUMBER_SUFFIX = /(_[a-z_\d]+)?/;
|
---|
| 58 | const OPTIONAL_NUMBER_EXP = /([de][+-]?\d+)?/;
|
---|
| 59 | const NUMBER = {
|
---|
| 60 | className: 'number',
|
---|
| 61 | variants: [
|
---|
| 62 | {
|
---|
| 63 | begin: concat(/\b\d+/, /\.(\d*)/, OPTIONAL_NUMBER_EXP, OPTIONAL_NUMBER_SUFFIX)
|
---|
| 64 | },
|
---|
| 65 | {
|
---|
| 66 | begin: concat(/\b\d+/, OPTIONAL_NUMBER_EXP, OPTIONAL_NUMBER_SUFFIX)
|
---|
| 67 | },
|
---|
| 68 | {
|
---|
| 69 | begin: concat(/\.\d+/, OPTIONAL_NUMBER_EXP, OPTIONAL_NUMBER_SUFFIX)
|
---|
| 70 | }
|
---|
| 71 | ],
|
---|
| 72 | relevance: 0
|
---|
| 73 | };
|
---|
| 74 |
|
---|
| 75 | const FUNCTION_DEF = {
|
---|
| 76 | className: 'function',
|
---|
| 77 | beginKeywords: 'subroutine function program',
|
---|
| 78 | illegal: '[${=\\n]',
|
---|
| 79 | contains: [
|
---|
| 80 | hljs.UNDERSCORE_TITLE_MODE,
|
---|
| 81 | PARAMS
|
---|
| 82 | ]
|
---|
| 83 | };
|
---|
| 84 |
|
---|
| 85 | const STRING = {
|
---|
| 86 | className: 'string',
|
---|
| 87 | relevance: 0,
|
---|
| 88 | variants: [
|
---|
| 89 | hljs.APOS_STRING_MODE,
|
---|
| 90 | hljs.QUOTE_STRING_MODE
|
---|
| 91 | ]
|
---|
| 92 | };
|
---|
| 93 |
|
---|
| 94 | const KEYWORDS = {
|
---|
| 95 | literal: '.False. .True.',
|
---|
| 96 | keyword: 'kind do concurrent local shared while private call intrinsic where elsewhere ' +
|
---|
| 97 | 'type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then block endblock endassociate ' +
|
---|
| 98 | 'public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. ' +
|
---|
| 99 | 'goto save else use module select case ' +
|
---|
| 100 | 'access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit ' +
|
---|
| 101 | 'continue format pause cycle exit ' +
|
---|
| 102 | 'c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg ' +
|
---|
| 103 | 'synchronous nopass non_overridable pass protected volatile abstract extends import ' +
|
---|
| 104 | 'non_intrinsic value deferred generic final enumerator class associate bind enum ' +
|
---|
| 105 | 'c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t ' +
|
---|
| 106 | 'c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double ' +
|
---|
| 107 | 'c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr ' +
|
---|
| 108 | 'c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer ' +
|
---|
| 109 | 'c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor ' +
|
---|
| 110 | 'numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ' +
|
---|
| 111 | 'ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive ' +
|
---|
| 112 | 'pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure impure ' +
|
---|
| 113 | 'integer real character complex logical codimension dimension allocatable|10 parameter ' +
|
---|
| 114 | 'external implicit|10 none double precision assign intent optional pointer ' +
|
---|
| 115 | 'target in out common equivalence data',
|
---|
| 116 | built_in: 'alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint ' +
|
---|
| 117 | 'dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl ' +
|
---|
| 118 | 'algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama ' +
|
---|
| 119 | 'iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod ' +
|
---|
| 120 | 'qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log ' +
|
---|
| 121 | 'log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate ' +
|
---|
| 122 | 'adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product ' +
|
---|
| 123 | 'eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul ' +
|
---|
| 124 | 'maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product ' +
|
---|
| 125 | 'radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind ' +
|
---|
| 126 | 'set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer ' +
|
---|
| 127 | 'dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ' +
|
---|
| 128 | 'ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode ' +
|
---|
| 129 | 'is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of ' +
|
---|
| 130 | 'acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 ' +
|
---|
| 131 | 'atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits ' +
|
---|
| 132 | 'bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr ' +
|
---|
| 133 | 'num_images parity popcnt poppar shifta shiftl shiftr this_image sync change team co_broadcast co_max co_min co_sum co_reduce'
|
---|
| 134 | };
|
---|
| 135 | return {
|
---|
| 136 | name: 'Fortran',
|
---|
| 137 | case_insensitive: true,
|
---|
| 138 | aliases: [
|
---|
| 139 | 'f90',
|
---|
| 140 | 'f95'
|
---|
| 141 | ],
|
---|
| 142 | keywords: KEYWORDS,
|
---|
| 143 | illegal: /\/\*/,
|
---|
| 144 | contains: [
|
---|
| 145 | STRING,
|
---|
| 146 | FUNCTION_DEF,
|
---|
| 147 | // allow `C = value` for assignments so they aren't misdetected
|
---|
| 148 | // as Fortran 77 style comments
|
---|
| 149 | {
|
---|
| 150 | begin: /^C\s*=(?!=)/,
|
---|
| 151 | relevance: 0
|
---|
| 152 | },
|
---|
| 153 | COMMENT,
|
---|
| 154 | NUMBER
|
---|
| 155 | ]
|
---|
| 156 | };
|
---|
| 157 | }
|
---|
| 158 |
|
---|
| 159 | module.exports = fortran;
|
---|